diff options
author | Stefan Agner <stefan@agner.ch> | 2019-01-11 16:49:51 +0100 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-05-23 16:52:35 +0200 |
commit | 8169cf0a02caafd87ee33e66c12f7a35606a6b0c (patch) | |
tree | ce66beb958888d91e18449b88afe50936533ca86 /drivers/media/dvb-frontends/Kconfig | |
parent | media: videobuf2-core.h: Document the alloc memop size argument as page aligned (diff) | |
download | linux-8169cf0a02caafd87ee33e66c12f7a35606a6b0c.tar.xz linux-8169cf0a02caafd87ee33e66c12f7a35606a6b0c.zip |
media: Kconfig: allow to select drivers if EMBEDDED
Embedded systems often connect to sensors or other multimedia
subdevices directly. Currently, to be able to select such a
subdevice (e.g. CONFIG_VIDEO_OV5640) disabling of the auto-
select config option is needed (CONFIG_MEDIA_SUBDRV_AUTOSELECT).
This is inconvenient as the ancillary drivers for a particular
device then need to be selected manually.
Allow to select drivers manually while keeping the auto-select
feature in case EXPERT (selected by EMBEDDED) is enabled.
Signed-off-by: Stefan Agner <stefan@agner.ch>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Diffstat (limited to 'drivers/media/dvb-frontends/Kconfig')
-rw-r--r-- | drivers/media/dvb-frontends/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb-frontends/Kconfig b/drivers/media/dvb-frontends/Kconfig index 847da72d1256..ea5450fcb616 100644 --- a/drivers/media/dvb-frontends/Kconfig +++ b/drivers/media/dvb-frontends/Kconfig @@ -1,5 +1,5 @@ menu "Customise DVB Frontends" - visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST + visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST || EXPERT comment "Multistandard (satellite) frontends" depends on DVB_CORE |