diff options
author | Ben Dooks <ben-linux@fluff.org> | 2008-01-28 07:01:31 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-01-28 08:20:52 -0500 |
commit | ddd870bdb722280bd5af1682d82557d1787ac90c (patch) | |
tree | 691cd356f83408c05777258125012232943d98e7 /arch/arm/mach-s3c2412 | |
parent | cca851d7b4d87f3a644d3381930dc737890bd9ac (diff) |
[ARM] 4791/1: S3C2412: Make fclk a parent of msysclk
In the S3C2412 fclk is derived from msysclk, not straight from
the MPLL output. Set clk_f.parent appropriately.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-s3c2412')
-rw-r--r-- | arch/arm/mach-s3c2412/clock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2412/clock.c b/arch/arm/mach-s3c2412/clock.c index 0f752500cd5b..2697a65ba727 100644 --- a/arch/arm/mach-s3c2412/clock.c +++ b/arch/arm/mach-s3c2412/clock.c | |||
@@ -684,6 +684,8 @@ int __init s3c2412_baseclk_add(void) | |||
684 | clk_usb_bus.parent = &clk_usbsrc; | 684 | clk_usb_bus.parent = &clk_usbsrc; |
685 | clk_usb_bus.rate = 0x0; | 685 | clk_usb_bus.rate = 0x0; |
686 | 686 | ||
687 | clk_f.parent = &clk_msysclk; | ||
688 | |||
687 | s3c2412_clk_initparents(); | 689 | s3c2412_clk_initparents(); |
688 | 690 | ||
689 | for (ptr = 0; ptr < ARRAY_SIZE(clks); ptr++) { | 691 | for (ptr = 0; ptr < ARRAY_SIZE(clks); ptr++) { |