Include test_drivers/Kconfig when MEDIA_TEST_SUPPORT is enabled rather than MEDIA_PLATFORM_SUPPORT. Test drivers should not depend on platform drivers to be enabled. Fixes: 4b32216adb010 ("media: split test drivers from platform directory") Reported-by: "kernelci.org bot" <bot@xxxxxxxxxxxx> Signed-off-by: Guillaume Tucker <guillaume.tucker@xxxxxxxxxxxxx> --- drivers/media/Kconfig | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/media/Kconfig b/drivers/media/Kconfig index a8def1591352..d926c2603de2 100644 --- a/drivers/media/Kconfig +++ b/drivers/media/Kconfig @@ -238,10 +238,13 @@ source "drivers/media/common/Kconfig" if MEDIA_PLATFORM_SUPPORT source "drivers/media/platform/Kconfig" -source "drivers/media/test_drivers/Kconfig" source "drivers/media/mmc/Kconfig" endif +if MEDIA_TEST_SUPPORT +source "drivers/media/test_drivers/Kconfig" +endif + source "drivers/media/firewire/Kconfig" endmenu -- 2.20.1