From 79258e28eb65be1b65422f0bd629acd169bda4f5 Mon Sep 17 00:00:00 2001 From: Lecopzer Chen Date: Wed, 2 Jun 2021 17:49:58 +0800 Subject: [PATCH] FROMLIST: media: Kconfig: Fix DVB_CORE can't be selected as module The DVB_CORE now depends on MEDIA_DIGITAL_TV_SUPPORT and default MEDIA_DIGITAL_TV_SUPPORT, and this makes it can never be =m since the type of MEDIA_DIGITAL_TV_SUPPORT is bool. Change MEDIA_DIGITAL_TV_SUPPORT to tristate so it's possible to set DVB_CORE as =m. Link: https://lore.kernel.org/lkml/20210608101451.9301-1-lecopzer.chen@mediatek.com/ Bug: 189516917 Signed-off-by: Lecopzer Chen Change-Id: I3e62e9f6b0e3e42b3ce8b7d179266700bb25e6a0 --- drivers/media/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig index 5d93e5773e47..118e7ddbfd8b 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig @@ -87,7 +87,7 @@ config MEDIA_ANALOG_TV_SUPPORT will disable support for them. config MEDIA_DIGITAL_TV_SUPPORT - bool "Digital TV" + tristate "Digital TV" default y if !MEDIA_SUPPORT_FILTER help Enable digital TV support.