Skip to content
Snippets Groups Projects
Commit d0013c9e authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Paul Mundt
Browse files

sh: make some needlessly global sh7724 clocks static


These clocks are currently only used inside one .c file and are not
declared in any headers, therefore having them global is useless.

Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 6af26c6c
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ static struct clk r_clk = { ...@@ -48,7 +48,7 @@ static struct clk r_clk = {
* Default rate for the root input clock, reset this with clk_set_rate() * Default rate for the root input clock, reset this with clk_set_rate()
* from the platform code. * from the platform code.
*/ */
struct clk extal_clk = { static struct clk extal_clk = {
.rate = 33333333, .rate = 33333333,
}; };
...@@ -111,7 +111,7 @@ static struct clk div3_clk = { ...@@ -111,7 +111,7 @@ static struct clk div3_clk = {
.parent = &pll_clk, .parent = &pll_clk,
}; };
struct clk *main_clks[] = { static struct clk *main_clks[] = {
&r_clk, &r_clk,
&extal_clk, &extal_clk,
&fll_clk, &fll_clk,
...@@ -156,7 +156,7 @@ struct clk div4_clks[DIV4_NR] = { ...@@ -156,7 +156,7 @@ struct clk div4_clks[DIV4_NR] = {
enum { DIV6_V, DIV6_FA, DIV6_FB, DIV6_I, DIV6_S, DIV6_NR }; enum { DIV6_V, DIV6_FA, DIV6_FB, DIV6_I, DIV6_S, DIV6_NR };
struct clk div6_clks[DIV6_NR] = { static struct clk div6_clks[DIV6_NR] = {
[DIV6_V] = SH_CLK_DIV6(&div3_clk, VCLKCR, 0), [DIV6_V] = SH_CLK_DIV6(&div3_clk, VCLKCR, 0),
[DIV6_FA] = SH_CLK_DIV6(&div3_clk, FCLKACR, 0), [DIV6_FA] = SH_CLK_DIV6(&div3_clk, FCLKACR, 0),
[DIV6_FB] = SH_CLK_DIV6(&div3_clk, FCLKBCR, 0), [DIV6_FB] = SH_CLK_DIV6(&div3_clk, FCLKBCR, 0),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment