diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-25 11:13:08 +0100 |
---|---|---|
committer | Hans Verkuil <hverkuil@xs4all.nl> | 2007-02-25 11:13:08 +0100 |
commit | 0ef39045d22cd86b1faf31910298a61ad9e9e4b7 (patch) | |
tree | 9aca32ee5c3851b02f94236aa95a4de24f4df3d8 /linux/include | |
parent | 3456dcb8bdd105f85c8f1a177d03051f698da268 (diff) | |
download | mediapointer-dvb-s2-0ef39045d22cd86b1faf31910298a61ad9e9e4b7.tar.gz mediapointer-dvb-s2-0ef39045d22cd86b1faf31910298a61ad9e9e4b7.tar.bz2 |
Remove V4L2_CHIP_MATCH_ALWAYS.
From: Hans Verkuil <hverkuil@xs4all.nl>
V4L2_CHIP_MATCH_ALWAYS turned out to be confusing and also unnecessary.
It's now removed.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'linux/include')
-rw-r--r-- | linux/include/linux/videodev2.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/linux/include/linux/videodev2.h b/linux/include/linux/videodev2.h index 8a5aabb84..76af1e16a 100644 --- a/linux/include/linux/videodev2.h +++ b/linux/include/linux/videodev2.h @@ -1387,10 +1387,9 @@ struct v4l2_streamparm /* VIDIOC_DBG_G_REGISTER and VIDIOC_DBG_S_REGISTER */ -#define V4L2_CHIP_MATCH_ALWAYS 0 /* Match always (match_chip is not used) */ -#define V4L2_CHIP_MATCH_HOST 1 /* Match against chip ID on host (0 for the host) */ -#define V4L2_CHIP_MATCH_I2C_DRIVER 2 /* Match against I2C driver ID */ -#define V4L2_CHIP_MATCH_I2C_ADDR 3 /* Match against I2C 7-bit address */ +#define V4L2_CHIP_MATCH_HOST 0 /* Match against chip ID on host (0 for the host) */ +#define V4L2_CHIP_MATCH_I2C_DRIVER 1 /* Match against I2C driver ID */ +#define V4L2_CHIP_MATCH_I2C_ADDR 2 /* Match against I2C 7-bit address */ struct v4l2_register { __u32 match_type; /* Match type */ |