Commit 485da304 authored by Kieran Bingham's avatar Kieran Bingham Committed by Mauro Carvalho Chehab
Browse files

media: vsp1: Use BIT macro for feature identification



These entries can only ever be single bits. Make use of the BIT macro
accordingly.

Signed-off-by: default avatarKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 7113469d
Loading
Loading
Loading
Loading
+10 −10
Original line number Diff line number Diff line
@@ -44,16 +44,16 @@ struct vsp1_uif;
#define VSP1_MAX_UIF		2
#define VSP1_MAX_WPF		4

#define VSP1_HAS_LUT		(1 << 1)
#define VSP1_HAS_SRU		(1 << 2)
#define VSP1_HAS_BRU		(1 << 3)
#define VSP1_HAS_CLU		(1 << 4)
#define VSP1_HAS_WPF_VFLIP	(1 << 5)
#define VSP1_HAS_WPF_HFLIP	(1 << 6)
#define VSP1_HAS_HGO		(1 << 7)
#define VSP1_HAS_HGT		(1 << 8)
#define VSP1_HAS_BRS		(1 << 9)
#define VSP1_HAS_EXT_DL		(1 << 10)
#define VSP1_HAS_LUT		BIT(1)
#define VSP1_HAS_SRU		BIT(2)
#define VSP1_HAS_BRU		BIT(3)
#define VSP1_HAS_CLU		BIT(4)
#define VSP1_HAS_WPF_VFLIP	BIT(5)
#define VSP1_HAS_WPF_HFLIP	BIT(6)
#define VSP1_HAS_HGO		BIT(7)
#define VSP1_HAS_HGT		BIT(8)
#define VSP1_HAS_BRS		BIT(9)
#define VSP1_HAS_EXT_DL		BIT(10)

struct vsp1_device_info {
	u32 version;