diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-06-18 17:54:44 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-06-22 09:11:56 -0400 |
commit | 386f43517f8bf026320fd4b9e077140681d7e595 (patch) | |
tree | 3fe36499caf87740062d6605536f2eb1472ede3d /arch | |
parent | 6ade7fa7bb4484b4dc78e55700d0f62bacd491e9 (diff) |
[ARM] S3C64XX: clock.c: fix typo in usb-host clock ctrlbit
The usb-host clock was using the wrong define (the SCLK enable for the
usb-host-bus) to change the HCLK register instead of the HCLK_UHOST bit.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/plat-s3c64xx/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c64xx/clock.c b/arch/arm/plat-s3c64xx/clock.c index 0bc2fa1dfc40..7a36e899360d 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c | |||
@@ -191,7 +191,7 @@ static struct clk init_clocks[] = { | |||
191 | .id = -1, | 191 | .id = -1, |
192 | .parent = &clk_h, | 192 | .parent = &clk_h, |
193 | .enable = s3c64xx_hclk_ctrl, | 193 | .enable = s3c64xx_hclk_ctrl, |
194 | .ctrlbit = S3C_CLKCON_SCLK_UHOST, | 194 | .ctrlbit = S3C_CLKCON_HCLK_UHOST, |
195 | }, { | 195 | }, { |
196 | .name = "hsmmc", | 196 | .name = "hsmmc", |
197 | .id = 0, | 197 | .id = 0, |