OSDN Git Service

media: vsp1: Use BIT macro for feature identification
authorKieran Bingham <kieran.bingham+renesas@ideasonboard.com>
Wed, 16 Dec 2020 11:45:48 +0000 (12:45 +0100)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Tue, 12 Jan 2021 17:17:43 +0000 (18:17 +0100)
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>
drivers/media/platform/vsp1/vsp1.h

index 56c6212..37cf33c 100644 (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;