diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-06-18 23:54:44 +0200 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-06-22 14:11:56 +0100 |
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 0bc2fa1dfc4..7a36e899360 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c @@ -191,7 +191,7 @@ static struct clk init_clocks[] = { .id = -1, .parent = &clk_h, .enable = s3c64xx_hclk_ctrl, - .ctrlbit = S3C_CLKCON_SCLK_UHOST, + .ctrlbit = S3C_CLKCON_HCLK_UHOST, }, { .name = "hsmmc", .id = 0, |