aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Turquette <mturquette@baylibre.com>2016-06-22 22:12:21 -0400
committerArnd Bergmann <arnd@arndb.de>2016-07-07 11:54:25 -0400
commitefea375fa93bde40214421ba176221438176cd06 (patch)
treede1d43b284cde4e6ad10a632a25756e80ddc83a6
parenta30eceb7a59daa2d92cca7f2f30b9bd91a8d7111 (diff)
arm: meson: explicitly select clk drivers
The AmLogic clock controller code is used by both arm and arm64 architectures. Explicitly select the core code for all Meson (32-bit arm) builds, and also select the Meson8b driver when that machine is built. Signed-off-by: Michael Turquette <mturquette@baylibre.com> Signed-off-by: Kevin Hilman <khilman@baylibre.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r--arch/arm/mach-meson/Kconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/mach-meson/Kconfig b/arch/arm/mach-meson/Kconfig
index fbce42d7390f..b6e3acc63e14 100644
--- a/arch/arm/mach-meson/Kconfig
+++ b/arch/arm/mach-meson/Kconfig
@@ -7,6 +7,8 @@ menuconfig ARCH_MESON
7 select CACHE_L2X0 7 select CACHE_L2X0
8 select PINCTRL 8 select PINCTRL
9 select PINCTRL_MESON 9 select PINCTRL_MESON
10 select COMMON_CLK
11 select COMMON_CLK_AMLOGIC
10 12
11if ARCH_MESON 13if ARCH_MESON
12 14
@@ -24,5 +26,6 @@ config MACH_MESON8B
24 bool "Amlogic Meson8b SoCs support" 26 bool "Amlogic Meson8b SoCs support"
25 default ARCH_MESON 27 default ARCH_MESON
26 select MESON6_TIMER 28 select MESON6_TIMER
29 select COMMON_CLK_MESON8B
27 30
28endif 31endif