media: medium: cec: Make MEDIA_CEC_SUPPORT default to n if !MEDIA_SUPPORT

Recently, MEDIA_CEC_SUPPORT became indepedent of MEDIA_SUPPORT.
However, if MEDIA_SUPPORT is not enabled, MEDIA_SUPPORT_FILTER is not
defined, and MEDIA_CEC_SUPPORT is thus enabled by default, which is not
desirable.

Fix this by adding a dependency on MEDIA_CEC_SUPPORT to the default
configuration.

Fixes: 46d2a3b964 ("media: place CEC menu before MEDIA_SUPPORT")
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
Geert Uytterhoeven 2020-06-04 11:39:53 +02:00 committed by Mauro Carvalho Chehab
parent d5aecd289b
commit 15168b2046
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ config CEC_PIN_ERROR_INJ
menuconfig MEDIA_CEC_SUPPORT menuconfig MEDIA_CEC_SUPPORT
bool bool
prompt "HDMI CEC drivers" prompt "HDMI CEC drivers"
default y if !MEDIA_SUPPORT_FILTER default y if MEDIA_SUPPORT && !MEDIA_SUPPORT_FILTER
help help
Enable support for HDMI CEC (Consumer Electronics Control), Enable support for HDMI CEC (Consumer Electronics Control),
which is an optional HDMI feature. which is an optional HDMI feature.