diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-07 18:12:38 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-07-07 18:13:01 +0100 |
commit | 29a7bcfd144a577b5cdb3b735c58e20d0489b30e (patch) | |
tree | 79bac7e2d108cf810e87c7113af562b62eaadd95 /arch/arm/mach-s3c2443 | |
parent | 66493c2d88d5086399c5a485d6e41cb76b241a1f (diff) |
[ARM] S3C2443: Fix s3c2443_clkcon_enable_p() using wrong register.
s3c2443_clkcon_enable_p() was reading from the correct register
S3C2443_PCLKCON, but then writing the value back to the wrong
register S3C2443_HCLKCON.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c2443')
-rw-r--r-- | arch/arm/mach-s3c2443/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2443/clock.c b/arch/arm/mach-s3c2443/clock.c index b42f956738d0..24da92417a16 100644 --- a/arch/arm/mach-s3c2443/clock.c +++ b/arch/arm/mach-s3c2443/clock.c @@ -81,7 +81,7 @@ static int s3c2443_clkcon_enable_p(struct clk *clk, int enable) else clkcon &= ~clocks; - __raw_writel(clkcon, S3C2443_HCLKCON); + __raw_writel(clkcon, S3C2443_PCLKCON); return 0; } |