diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-07-07 13:12:38 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2008-07-07 13:13:01 -0400 |
commit | 29a7bcfd144a577b5cdb3b735c58e20d0489b30e (patch) | |
tree | 79bac7e2d108cf810e87c7113af562b62eaadd95 /arch/arm/mach-s3c2443/clock.c | |
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/clock.c')
-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) | |||
81 | else | 81 | else |
82 | clkcon &= ~clocks; | 82 | clkcon &= ~clocks; |
83 | 83 | ||
84 | __raw_writel(clkcon, S3C2443_HCLKCON); | 84 | __raw_writel(clkcon, S3C2443_PCLKCON); |
85 | 85 | ||
86 | return 0; | 86 | return 0; |
87 | } | 87 | } |