From 16c86ef7fc3fff118a985705bf18fe7ec9e493e7 Mon Sep 17 00:00:00 2001 From: Arnd Bergmann Date: Tue, 21 Mar 2017 21:52:56 +0100 Subject: ARM: gemini: don't select SERIAL_OF_PLATFORM We cannot select the option when SERIAL_8250 is not also set: warning: (ARCH_GEMINI) selects SERIAL_OF_PLATFORM which has unmet direct dependencies (TTY && HAS_IOMEM && SERIAL_8250 && OF) This removes the 'select' statement, requiring that users enable the option manually. Alternatively, we could make it a conditional 'select SERIAL_OF_PLATFORM if SERIAL_8250' or also select a handful of other symbols that it depends on. Signed-off-by: Arnd Bergmann Signed-off-by: Linus Walleij --- arch/arm/mach-gemini/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm/mach-gemini/Kconfig b/arch/arm/mach-gemini/Kconfig index eaae82637da3..06c8b095154c 100644 --- a/arch/arm/mach-gemini/Kconfig +++ b/arch/arm/mach-gemini/Kconfig @@ -9,6 +9,5 @@ menuconfig ARCH_GEMINI select POWER_RESET select POWER_RESET_GEMINI_POWEROFF select POWER_RESET_SYSCON - select SERIAL_OF_PLATFORM help Support for the Cortina Systems Gemini family SoCs -- cgit