Commit 60713996 authored by Ben Dooks's avatar Ben Dooks

ARM: Merge for-2635/s5pv210-clock

Merge branch 'for-2635/s5pv210-clock' into for-linus/samsung2
parents d16067b2 f64cacc3
This diff is collapsed.
...@@ -74,6 +74,13 @@ struct clk clk_fout_epll = { ...@@ -74,6 +74,13 @@ struct clk clk_fout_epll = {
.ctrlbit = (1 << 31), .ctrlbit = (1 << 31),
}; };
/* VPLL clock output */
struct clk clk_fout_vpll = {
.name = "fout_vpll",
.id = -1,
.ctrlbit = (1 << 31),
};
/* ARM clock */ /* ARM clock */
struct clk clk_arm = { struct clk clk_arm = {
.name = "armclk", .name = "armclk",
...@@ -138,6 +145,7 @@ static struct clk *s5p_clks[] __initdata = { ...@@ -138,6 +145,7 @@ static struct clk *s5p_clks[] __initdata = {
&clk_fout_apll, &clk_fout_apll,
&clk_fout_mpll, &clk_fout_mpll,
&clk_fout_epll, &clk_fout_epll,
&clk_fout_vpll,
&clk_arm, &clk_arm,
&clk_vpll, &clk_vpll,
}; };
......
...@@ -28,6 +28,7 @@ extern struct clk clk_48m; ...@@ -28,6 +28,7 @@ extern struct clk clk_48m;
extern struct clk clk_fout_apll; extern struct clk clk_fout_apll;
extern struct clk clk_fout_mpll; extern struct clk clk_fout_mpll;
extern struct clk clk_fout_epll; extern struct clk clk_fout_epll;
extern struct clk clk_fout_vpll;
extern struct clk clk_arm; extern struct clk clk_arm;
extern struct clk clk_vpll; extern struct clk clk_vpll;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment