Skip to content

Commit 4c1d76a

Browse files
committed
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.
2 parents 7f058c0 + e4c740e commit 4c1d76a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

arch/arm/mach-pxa/Kconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ comment "Intel/Marvell Dev Platforms (sorted by hardware release time)"
66

77
config MACH_PXA27X_DT
88
bool "Support PXA27x platforms from device tree"
9+
select PINCTRL
910
select POWER_SUPPLY
1011
select PXA27x
1112
select USE_OF
@@ -17,6 +18,7 @@ config MACH_PXA27X_DT
1718
config MACH_PXA3XX_DT
1819
bool "Support PXA3xx platforms from device tree"
1920
select CPU_PXA300
21+
select PINCTRL
2022
select POWER_SUPPLY
2123
select PXA3xx
2224
select USE_OF

arch/arm/mach-pxa/eseries.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ struct resource eseries_tmio_resources[] = {
128128
/* Some e-series hardware cannot control the 32K clock */
129129
static void __init __maybe_unused eseries_register_clks(void)
130130
{
131-
clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, CLK_IS_ROOT, 32768);
131+
clk_register_fixed_rate(NULL, "CLK_CK32K", NULL, 0, 32768);
132132
}
133133

134134
#ifdef CONFIG_MACH_E330

0 commit comments

Comments
 (0)