From mboxrd@z Thu Jan 1 00:00:00 1970 From: pebolle@tiscali.nl (Paul Bolle) Date: Tue, 05 Mar 2013 10:34:58 +0100 Subject: [PATCH] ARM: dove: Fix typo "COMMON_CLK_DOVE" Message-ID: <1362476098.16460.65.camel@x61.thuisdomein> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Commit 5b03df9ace680d7cdd34a69dfd85ca5f74159d18 ("ARM: dove: switch to DT clock providers") added "select COMMON_CLK_DOVE" to Marvell Dove's Kconfig entry. But there's no Kconfig symbol COMMON_CLK_DOVE, which makes this select statement a nop. Since the Marvell Dove code includes we can assume that this entry needs to select COMMON_CLK instead. Signed-off-by: Paul Bolle --- Untested. arch/arm/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 5b71469..31acce7 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -556,7 +556,7 @@ config ARCH_IXP4XX config ARCH_DOVE bool "Marvell Dove" select ARCH_REQUIRE_GPIOLIB - select COMMON_CLK_DOVE + select COMMON_CLK select CPU_V7 select GENERIC_CLOCKEVENTS select MIGHT_HAVE_PCI -- 1.7.11.7