diff options
| author | Ben Dooks <ben-linux@fluff.org> | 2009-02-27 06:25:37 -0500 |
|---|---|---|
| committer | Ben Dooks <ben-linux@fluff.org> | 2009-02-27 06:25:37 -0500 |
| commit | 3782d3605522b836f53c6d11f76abf5404425c1b (patch) | |
| tree | cb51a698f5b90cfd4427f7d53b028f74b12769f6 | |
| parent | 41ba41d7c7e1d2a3c9cdfe16c1ee9f7af4693ae2 (diff) | |
[ARM] S3C64XX: sparse warnings in arch/arm/plat-s3c64xx/s3c6400-clock.c
Fix the following sparse warnings in s3c6400-clock.c:
39:12: warning: symbol 'clk_ext_xtal_mux' was not declared. Should it be static?
66:12: warning: symbol 'clk_fout_apll' was not declared. Should it be static?
81:19: warning: symbol 'clk_mout_apll' was not declared. Should it be static?
91:12: warning: symbol 'clk_fout_epll' was not declared. Should it be static?
106:19: warning: symbol 'clk_mout_epll' was not declared. Should it be static?
126:19: warning: symbol 'clk_mout_mpll' was not declared. Should it be static?
148:12: warning: symbol 'clk_dout_mpll' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
| -rw-r--r-- | arch/arm/plat-s3c64xx/s3c6400-clock.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/plat-s3c64xx/s3c6400-clock.c b/arch/arm/plat-s3c64xx/s3c6400-clock.c index 2984270b40a7..6edbeef6aa9d 100644 --- a/arch/arm/plat-s3c64xx/s3c6400-clock.c +++ b/arch/arm/plat-s3c64xx/s3c6400-clock.c | |||
| @@ -36,7 +36,7 @@ | |||
| 36 | * ext_xtal_mux for want of an actual name from the manual. | 36 | * ext_xtal_mux for want of an actual name from the manual. |
| 37 | */ | 37 | */ |
| 38 | 38 | ||
| 39 | struct clk clk_ext_xtal_mux = { | 39 | static struct clk clk_ext_xtal_mux = { |
| 40 | .name = "ext_xtal", | 40 | .name = "ext_xtal", |
| 41 | .id = -1, | 41 | .id = -1, |
| 42 | }; | 42 | }; |
| @@ -63,7 +63,7 @@ struct clksrc_clk { | |||
| 63 | void __iomem *reg_divider; | 63 | void __iomem *reg_divider; |
| 64 | }; | 64 | }; |
| 65 | 65 | ||
| 66 | struct clk clk_fout_apll = { | 66 | static struct clk clk_fout_apll = { |
| 67 | .name = "fout_apll", | 67 | .name = "fout_apll", |
| 68 | .id = -1, | 68 | .id = -1, |
| 69 | }; | 69 | }; |
| @@ -78,7 +78,7 @@ static struct clk_sources clk_src_apll = { | |||
| 78 | .nr_sources = ARRAY_SIZE(clk_src_apll_list), | 78 | .nr_sources = ARRAY_SIZE(clk_src_apll_list), |
| 79 | }; | 79 | }; |
| 80 | 80 | ||
| 81 | struct clksrc_clk clk_mout_apll = { | 81 | static struct clksrc_clk clk_mout_apll = { |
| 82 | .clk = { | 82 | .clk = { |
| 83 | .name = "mout_apll", | 83 | .name = "mout_apll", |
| 84 | .id = -1, | 84 | .id = -1, |
| @@ -88,7 +88,7 @@ struct clksrc_clk clk_mout_apll = { | |||
| 88 | .sources = &clk_src_apll, | 88 | .sources = &clk_src_apll, |
| 89 | }; | 89 | }; |
| 90 | 90 | ||
| 91 | struct clk clk_fout_epll = { | 91 | static struct clk clk_fout_epll = { |
| 92 | .name = "fout_epll", | 92 | .name = "fout_epll", |
| 93 | .id = -1, | 93 | .id = -1, |
| 94 | }; | 94 | }; |
| @@ -103,7 +103,7 @@ static struct clk_sources clk_src_epll = { | |||
| 103 | .nr_sources = ARRAY_SIZE(clk_src_epll_list), | 103 | .nr_sources = ARRAY_SIZE(clk_src_epll_list), |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | struct clksrc_clk clk_mout_epll = { | 106 | static struct clksrc_clk clk_mout_epll = { |
| 107 | .clk = { | 107 | .clk = { |
| 108 | .name = "mout_epll", | 108 | .name = "mout_epll", |
| 109 | .id = -1, | 109 | .id = -1, |
| @@ -123,7 +123,7 @@ static struct clk_sources clk_src_mpll = { | |||
| 123 | .nr_sources = ARRAY_SIZE(clk_src_mpll_list), | 123 | .nr_sources = ARRAY_SIZE(clk_src_mpll_list), |
| 124 | }; | 124 | }; |
| 125 | 125 | ||
| 126 | struct clksrc_clk clk_mout_mpll = { | 126 | static struct clksrc_clk clk_mout_mpll = { |
| 127 | .clk = { | 127 | .clk = { |
| 128 | .name = "mout_mpll", | 128 | .name = "mout_mpll", |
| 129 | .id = -1, | 129 | .id = -1, |
| @@ -145,7 +145,7 @@ static unsigned long s3c64xx_clk_doutmpll_get_rate(struct clk *clk) | |||
| 145 | return rate; | 145 | return rate; |
| 146 | } | 146 | } |
| 147 | 147 | ||
| 148 | struct clk clk_dout_mpll = { | 148 | static struct clk clk_dout_mpll = { |
| 149 | .name = "dout_mpll", | 149 | .name = "dout_mpll", |
| 150 | .id = -1, | 150 | .id = -1, |
| 151 | .parent = &clk_mout_mpll.clk, | 151 | .parent = &clk_mout_mpll.clk, |
