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: Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Kieran Bingham 2020-12-16 12:45:48 +01:00 committed by Mauro Carvalho Chehab
parent 7113469daf
commit 485da30473
1 changed files with 10 additions and 10 deletions

View File

@ -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;