diff options
author | Werner Almesberger <werner@openmoko.org> | 2009-03-05 11:43:13 +0800 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-07 11:14:27 +0100 |
commit | a03f7daf6df31b4d849031c51a3c10b8ba78ce67 (patch) | |
tree | 1a9d4d5fd2a3a28d892374c2bb5fea0eb53e2c40 /arch/arm/plat-s3c64xx/clock.c | |
parent | e2c977dca2901012ddabdc2a7b3c47a80c94d431 (diff) |
[ARM] S3C64XX: Add HCLKx2
Add doubled HCLK to S3C64xx.
Signed-off-by: Werner Almesberger <werner@openmoko.org>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx/clock.c')
-rw-r--r-- | arch/arm/plat-s3c64xx/clock.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c64xx/clock.c b/arch/arm/plat-s3c64xx/clock.c index ad1b9682c9c..679076f5071 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c @@ -27,6 +27,12 @@ #include <plat/devs.h> #include <plat/clock.h> +struct clk clk_h2 = { + .name = "hclk2", + .id = -1, + .rate = 0, +}; + struct clk clk_27m = { .name = "clk_27m", .id = -1, @@ -246,6 +252,7 @@ static struct clk *clks[] __initdata = { &clk_epll, &clk_27m, &clk_48m, + &clk_h2, }; void __init s3c64xx_register_clocks(void) |