summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2019-02-07 12:07:51 +0000
committerRussell King <rmk+kernel@armlinux.org.uk>2020-10-18 23:30:35 +0100
commit9c4002242de37502b12c9ae7b039e49757a9ef68 (patch)
tree55893d47b8f21bc3b74a5206ca760d18e4ba167b
parent8c8d55ac08320e4348ea869d1bb11ef26aac2f06 (diff)
media: fix VIDEO_DEV dependencies
VIDEO_DEV can also be enabled when we have DTV support enabled. Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r--drivers/media/Kconfig2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig
index a6d073f2e036..24e89025583a 100644
--- a/drivers/media/Kconfig
+++ b/drivers/media/Kconfig
@@ -160,7 +160,7 @@ menu "Media core support"
config VIDEO_DEV
tristate "Video4Linux core"
- default MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT || MEDIA_PLATFORM_SUPPORT || MEDIA_TEST_SUPPORT
+ default MEDIA_CAMERA_SUPPORT || MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT || MEDIA_PLATFORM_SUPPORT || MEDIA_TEST_SUPPORT
help
Enables the V4L2 API, used by cameras, analog TV, video grabbers,
radio devices and by some input devices.