diff options
author | Arnd Bergmann <arnd@arndb.de> | 2016-05-20 14:22:44 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2016-05-20 14:22:44 -0400 |
commit | 4c1d76a1e15e0d66e581764b4d29d08d207aff4a (patch) | |
tree | 93e6398be3a8cb3da241f0bd3e9b61023e290f04 | |
parent | 7f058c0a4a0441044f96fcc863533004bc82cf65 (diff) | |
parent | e4c740e23969470f779a4c67861be4f09f87d8a0 (diff) |
Merge tag 'pxa-for-4.7' of https://github.com/rjarzmik/linux into fixes
Merge "pxa changes for v4.7 cycle" from Robert Jarzmik:
This is a minor cycle with :
- cleanup fix from Stephen on clocks (CLK_ROOT deprecated)
- pin control activation for device-tree platforms
* tag 'pxa-for-4.7' of https://github.com/rjarzmik/linux:
ARM: pxa: Remove CLK_IS_ROOT
ARM: pxa: activate pinctrl for device-tree machines
These should have been part of the original pull request but got
accidentally dropped. Both changes in this branch can be considered
bugfixes, so I'm putting them in the fixes branch now.
-rw-r--r-- | arch/arm/mach-pxa/Kconfig | 2 | ||||
-rw-r--r-- | arch/arm/mach-pxa/eseries.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig index 7ee4652b4c61..cd894d69e766 100644 --- a/arch/arm/mach-pxa/Kconfig +++ b/arch/arm/mach-pxa/Kconfig | |||
@@ -6,6 +6,7 @@ comment "Intel/Marvell Dev Platforms (sorted by hardware release time)" | |||
6 | 6 | ||
7 | config MACH_PXA27X_DT | 7 | config MACH_PXA27X_DT |
8 | bool "Support PXA27x platforms from device tree" | 8 | bool "Support PXA27x platforms from device tree" |
9 | select PINCTRL | ||
9 | select POWER_SUPPLY | 10 | select POWER_SUPPLY |
10 | select PXA27x | 11 | select PXA27x |
11 | select USE_OF | 12 | select USE_OF |
@@ -17,6 +18,7 @@ config MACH_PXA27X_DT | |||
17 | config MACH_PXA3XX_DT | 18 | config MACH_PXA3XX_DT |
18 | bool "Support PXA3xx platforms from device tree" | 19 | bool "Support PXA3xx platforms from device tree" |
19 | select CPU_PXA300 | 20 | select CPU_PXA300 |
21 | select PINCTRL | ||
20 | select POWER_SUPPLY | 22 | select POWER_SUPPLY |
21 | select PXA3xx | 23 | select PXA3xx |
22 | select USE_OF | 24 | select USE_OF |
diff --git a/arch/arm/mach-pxa/eseries.c b/arch/arm/mach-pxa/eseries.c index e838b11fb8c7..fa9d71d194f0 100644 --- a/arch/arm/mach-pxa/eseries.c +++ b/arch/arm/mach-pxa/eseries.c | |||
@@ -128,7 +128,7 @@ struct resource eseries_tmio_resources[] = { | |||
128 | /* Some e-series hardware cannot control the 32K clock */ | 128 | /* Some e-series hardware cannot control the 32K clock */ |
129 | static void __init __maybe_unused eseries_register_clks(void) | 129 | static void __init __maybe_unused eseries_register_clks(void) |
130 | { | 130 | { |
131 | clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, CLK_IS_ROOT, 32768); | 131 | clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, 0, 32768); |
132 | } | 132 | } |
133 | 133 | ||
134 | #ifdef CONFIG_MACH_E330 | 134 | #ifdef CONFIG_MACH_E330 |