diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2022-07-08 21:47:04 +0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-07-15 17:20:16 +0300 |
commit | dbae22e2008ee6a3acf2b7d989800eff80f0aa1f (patch) | |
tree | 59c85522ec9ef4b34bee4235b2ae1ed14ab88919 /drivers/media | |
parent | 817819b27e25b7ebcbe4807fa3232040444fc26e (diff) | |
download | linux-dbae22e2008ee6a3acf2b7d989800eff80f0aa1f.tar.xz |
media: ar0521: fix Kconfig: VIDEO_V4L2 -> VIDEO_DEV
VIDEO_V4L2 no longer exists, instead use VIDEO_DEV. Without this change
this driver cannot be selected.
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/i2c/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig index e0658c6ca13d..7806d4b81716 100644 --- a/drivers/media/i2c/Kconfig +++ b/drivers/media/i2c/Kconfig @@ -36,7 +36,7 @@ config VIDEO_CCS_PLL config VIDEO_AR0521 tristate "ON Semiconductor AR0521 sensor support" - depends on I2C && VIDEO_V4L2 + depends on I2C && VIDEO_DEV select MEDIA_CONTROLLER select VIDEO_V4L2_SUBDEV_API select V4L2_FWNODE |