Skip to content

Commit a53e3c1

Browse files
Hans Verkuilmchehab
authored andcommitted
media: v4l2-subdev.h: BIT() is not available in userspace
The BIT macro is not available in userspace, so replace BIT(0) by 0x00000001. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Fixes: 6446ec6 ("media: v4l2-subdev: add VIDIOC_SUBDEV_QUERYCAP ioctl") Cc: <stable@vger.kernel.org> Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
1 parent 95e9295 commit a53e3c1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/uapi/linux/v4l2-subdev.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ struct v4l2_subdev_capability {
176176
};
177177

178178
/* The v4l2 sub-device video device node is registered in read-only mode. */
179-
#define V4L2_SUBDEV_CAP_RO_SUBDEV BIT(0)
179+
#define V4L2_SUBDEV_CAP_RO_SUBDEV 0x00000001
180180

181181
/* Backwards compatibility define --- to be removed */
182182
#define v4l2_subdev_edid v4l2_edid

0 commit comments

Comments
 (0)