aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-stmp3xxx/core.c
diff options
context:
space:
mode:
authordmitry pervushin <dpervushin@embeddedalley.com>2009-05-31 08:32:11 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2009-05-31 08:55:56 -0400
commit98f420b23a62e0c9df78c5851860d47bf1bc87dd (patch)
treeb7e88059454d2410b1a2107c17a748a03d366fdf /arch/arm/plat-stmp3xxx/core.c
parent3f52326a85666c1cb0210eb5556ef3d483933cfc (diff)
[ARM] 5532/1: Freescale STMP: register definitions [3/3]
Replace HW_zzz register access macros by regular __raw_readl/__raw_writel calls Signed-off-by: dmitry pervushin <dpervushin@embeddedalley.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-stmp3xxx/core.c')
-rw-r--r--arch/arm/plat-stmp3xxx/core.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/plat-stmp3xxx/core.c b/arch/arm/plat-stmp3xxx/core.c
index 6e2fef1639b..37b8a09148a 100644
--- a/arch/arm/plat-stmp3xxx/core.c
+++ b/arch/arm/plat-stmp3xxx/core.c
@@ -20,6 +20,7 @@
20#include <linux/io.h> 20#include <linux/io.h>
21 21
22#include <mach/stmp3xxx.h> 22#include <mach/stmp3xxx.h>
23#include <mach/platform.h>
23#include <mach/dma.h> 24#include <mach/dma.h>
24#include <mach/regs-clkctrl.h> 25#include <mach/regs-clkctrl.h>
25 26
@@ -121,7 +122,7 @@ struct platform_device stmp3xxx_dbguart = {
121void __init stmp3xxx_init(void) 122void __init stmp3xxx_init(void)
122{ 123{
123 /* Turn off auto-slow and other tricks */ 124 /* Turn off auto-slow and other tricks */
124 HW_CLKCTRL_HBUS_CLR(0x07f00000U); 125 stmp3xxx_clearl(0x7f00000, REGS_CLKCTRL_BASE + HW_CLKCTRL_HBUS);
125 126
126 stmp3xxx_dma_init(); 127 stmp3xxx_dma_init();
127} 128}