diff options
author | Ben Dooks <ben-linux@fluff.org> | 2009-05-02 13:48:53 +0100 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-07 11:46:41 +0100 |
commit | 496a3f0927197ca155a604478bf6e7db3eca3bbd (patch) | |
tree | 8f0f68a8f2627743af393b17c5d0fd613f967578 /arch/arm/mach-s3c6410 | |
parent | 8f1ecf1d965f4e1842b32af5dd40f3d7b6d407ed (diff) |
[ARM] S3C64XX: Add ARM clock
Add ARM clock to provide 'arm' from the APLL to the ARM core.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/mach-s3c6410')
-rw-r--r-- | arch/arm/mach-s3c6410/cpu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c6410/cpu.c b/arch/arm/mach-s3c6410/cpu.c index 6a73ca6b7a3a..ade904de8895 100644 --- a/arch/arm/mach-s3c6410/cpu.c +++ b/arch/arm/mach-s3c6410/cpu.c @@ -31,6 +31,7 @@ #include <plat/cpu-freq.h> #include <plat/regs-serial.h> +#include <plat/regs-clock.h> #include <plat/cpu.h> #include <plat/devs.h> @@ -68,7 +69,7 @@ void __init s3c6410_init_clocks(int xtal) printk(KERN_DEBUG "%s: initialising clocks\n", __func__); s3c24xx_register_baseclocks(xtal); s3c64xx_register_clocks(); - s3c6400_register_clocks(); + s3c6400_register_clocks(S3C6410_CLKDIV0_ARM_MASK); s3c6400_setup_clocks(); } |