diff options
author | Russell King <rmk+kernel@armlinux.org.uk> | 2019-02-07 12:07:51 +0000 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2025-04-04 15:08:16 +0100 |
commit | 639499af2cac334cd9a2bb1b9f2f9e08fa99b534 (patch) | |
tree | 925ddab9ccaf830eac532d5acfea29ad79395e7e | |
parent | 4fad3d319fb8241d68964ceaacb3ef252c83d62e (diff) |
media: fix VIDEO_DEV dependenciescsi-v6
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/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig index 6abc9302cd84..ab9079adcd27 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig @@ -159,7 +159,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 depends on (I2C || I2C=n) select RATIONAL select VIDEOBUF2_V4L2 if VIDEOBUF2_CORE |