From: Arnd Bergmann Date: Wed, 29 Jun 2016 14:26:35 +0000 (-0300) Subject: [media] cec: add MEDIA_SUPPORT dependency X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=ea8c535e30c1066a0bf8acb2d39bb3c4e643a034;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [media] cec: add MEDIA_SUPPORT dependency The MEDIA_CEC_EDID option is guarded by MEDIA_SUPPORT, so selecting it from MEDIA_CEC produces a warning: warning: (MEDIA_CEC) selects MEDIA_CEC_EDID which has unmet direct dependencies (MEDIA_SUPPORT) The warning is harmless, but it's better to add an explicit dependency to shut it up, to reduce the noise during randconfig builds. Fixes: ca684386e6e2 ("[media] cec: add HDMI CEC framework (api)") Signed-off-by: Arnd Bergmann Signed-off-by: Hans Verkuil Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/staging/media/cec/Kconfig b/drivers/staging/media/cec/Kconfig index 8a7aceeac815..cd523590ea6f 100644 --- a/drivers/staging/media/cec/Kconfig +++ b/drivers/staging/media/cec/Kconfig @@ -1,5 +1,6 @@ config MEDIA_CEC tristate "CEC API (EXPERIMENTAL)" + depends on MEDIA_SUPPORT select MEDIA_CEC_EDID ---help--- Enable the CEC API.