diff options
author | Linus Walleij <linus.walleij@stericsson.com> | 2010-06-23 02:59:48 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2010-07-09 09:46:47 -0400 |
commit | d9e38040ccf9eb06b9b41c393c512ceb23f51a7f (patch) | |
tree | ca6103a3d1976832031e2c6561ce768432ce75ad /arch | |
parent | 398aa66827155ef52bab58bebd24597d90968929 (diff) |
ARM: 6184/2: ux500: use neutral PRCMU base
The MTU wallclock timing fix-up patch was hardwired to the DB8500
causing a regression. This makes it work on the DB5500 as well.
Signed-off-by: Linus Walleij <linus.walleij@stericsson.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-ux500/clock.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-ux500/cpu-db5500.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-ux500/clock.c b/arch/arm/mach-ux500/clock.c index fe84b9021c7a..0a1318fc8e2b 100644 --- a/arch/arm/mach-ux500/clock.c +++ b/arch/arm/mach-ux500/clock.c | |||
@@ -131,7 +131,7 @@ EXPORT_SYMBOL(clk_disable); | |||
131 | */ | 131 | */ |
132 | static unsigned long clk_mtu_get_rate(struct clk *clk) | 132 | static unsigned long clk_mtu_get_rate(struct clk *clk) |
133 | { | 133 | { |
134 | void __iomem *addr = __io_address(U8500_PRCMU_BASE) | 134 | void __iomem *addr = __io_address(UX500_PRCMU_BASE) |
135 | + PRCM_TCR; | 135 | + PRCM_TCR; |
136 | u32 tcr = readl(addr); | 136 | u32 tcr = readl(addr); |
137 | int mtu = (int) clk->data; | 137 | int mtu = (int) clk->data; |
diff --git a/arch/arm/mach-ux500/cpu-db5500.c b/arch/arm/mach-ux500/cpu-db5500.c index 6a3ac4539f16..e9278f6d67aa 100644 --- a/arch/arm/mach-ux500/cpu-db5500.c +++ b/arch/arm/mach-ux500/cpu-db5500.c | |||
@@ -21,6 +21,7 @@ static struct map_desc u5500_io_desc[] __initdata = { | |||
21 | __IO_DEV_DESC(U5500_GPIO2_BASE, SZ_4K), | 21 | __IO_DEV_DESC(U5500_GPIO2_BASE, SZ_4K), |
22 | __IO_DEV_DESC(U5500_GPIO3_BASE, SZ_4K), | 22 | __IO_DEV_DESC(U5500_GPIO3_BASE, SZ_4K), |
23 | __IO_DEV_DESC(U5500_GPIO4_BASE, SZ_4K), | 23 | __IO_DEV_DESC(U5500_GPIO4_BASE, SZ_4K), |
24 | __IO_DEV_DESC(U5500_PRCMU_BASE, SZ_4K), | ||
24 | }; | 25 | }; |
25 | 26 | ||
26 | static struct platform_device *u5500_platform_devs[] __initdata = { | 27 | static struct platform_device *u5500_platform_devs[] __initdata = { |