From: Thomas Abraham Date: Fri, 28 May 2010 02:41:14 +0000 (+0900) Subject: ARM: S3C64XX: Add USB OTG HCLK to the list of clocks X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=5f4c5b2de442dae32ec5059dda996ac6375ebf36;p=deliverable%2Flinux.git ARM: S3C64XX: Add USB OTG HCLK to the list of clocks Add the USB OTG HCLK clock to the list of clocks to be registered during initialization. Signed-off-by: Thomas Abraham Signed-off-by: Kukjin Kim Signed-off-by: Ben Dooks --- diff --git a/arch/arm/mach-s3c64xx/clock.c b/arch/arm/mach-s3c64xx/clock.c index 7a4138beb665..fbd85a9b7bbf 100644 --- a/arch/arm/mach-s3c64xx/clock.c +++ b/arch/arm/mach-s3c64xx/clock.c @@ -258,6 +258,12 @@ static struct clk init_clocks[] = { .parent = &clk_h, .enable = s3c64xx_hclk_ctrl, .ctrlbit = S3C_CLKCON_HCLK_HSMMC2, + }, { + .name = "otg", + .id = -1, + .parent = &clk_h, + .enable = s3c64xx_hclk_ctrl, + .ctrlbit = S3C_CLKCON_HCLK_USB, }, { .name = "timers", .id = -1,