diff options
author | Ezequiel Garcia <ezequiel@collabora.com> | 2019-07-15 17:23:15 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+samsung@kernel.org> | 2019-07-25 11:48:22 -0400 |
commit | 24f6f93a19e86779da94d97f4adccf3ab2662a77 (patch) | |
tree | 0228491a1843c6932729c926d2e49779bcc5eafe | |
parent | 6b4633310ae8a10f8ffacdc3eb6272b013c2adef (diff) |
media: Don't default-enable "ancillary driver autoselect" if EMBEDDED
Admittedly, it's not easy to say what CONFIG_EMBEDDED really should be
doing, just as it's not easy to say what is "embedded".
In any case, the very description of MEDIA_SUBDRV_AUTOSELECT
specifies that embedded systems usually don't want
to enable this autoselect option.
Therefore, drop the default-yes, when the CONFIG_EMBEDDED is chosen.
Signed-off-by: Ezequiel Garcia <ezequiel@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
-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 21cd9c02960b..8404e80aa38e 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig | |||
@@ -190,7 +190,7 @@ config MEDIA_SUBDRV_AUTOSELECT | |||
190 | depends on HAS_IOMEM | 190 | depends on HAS_IOMEM |
191 | select I2C | 191 | select I2C |
192 | select I2C_MUX | 192 | select I2C_MUX |
193 | default y | 193 | default y if !EMBEDDED |
194 | help | 194 | help |
195 | By default, a media driver auto-selects all possible ancillary | 195 | By default, a media driver auto-selects all possible ancillary |
196 | devices such as tuners, sensors, video encoders/decoders and | 196 | devices such as tuners, sensors, video encoders/decoders and |