diff options
-rw-r--r-- | drivers/clk/samsung/clk-s3c2410-dclk.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/clk/samsung/clk-s3c2410-dclk.c b/drivers/clk/samsung/clk-s3c2410-dclk.c index 8d8dff005c10..c1726f46eddd 100644 --- a/drivers/clk/samsung/clk-s3c2410-dclk.c +++ b/drivers/clk/samsung/clk-s3c2410-dclk.c | |||
@@ -135,26 +135,26 @@ struct s3c24xx_dclk { | |||
135 | #define to_s3c24xx_dclk1(x) \ | 135 | #define to_s3c24xx_dclk1(x) \ |
136 | container_of(x, struct s3c24xx_dclk, dclk1_div_change_nb) | 136 | container_of(x, struct s3c24xx_dclk, dclk1_div_change_nb) |
137 | 137 | ||
138 | PNAME(dclk_s3c2410_p) = { "pclk", "uclk" }; | 138 | static const char *dclk_s3c2410_p[] = { "pclk", "uclk" }; |
139 | PNAME(clkout0_s3c2410_p) = { "mpll", "upll", "fclk", "hclk", "pclk", | 139 | static const char *clkout0_s3c2410_p[] = { "mpll", "upll", "fclk", "hclk", "pclk", |
140 | "gate_dclk0" }; | 140 | "gate_dclk0" }; |
141 | PNAME(clkout1_s3c2410_p) = { "mpll", "upll", "fclk", "hclk", "pclk", | 141 | static const char *clkout1_s3c2410_p[] = { "mpll", "upll", "fclk", "hclk", "pclk", |
142 | "gate_dclk1" }; | 142 | "gate_dclk1" }; |
143 | 143 | ||
144 | PNAME(clkout0_s3c2412_p) = { "mpll", "upll", "rtc_clkout", | 144 | static const char *clkout0_s3c2412_p[] = { "mpll", "upll", "rtc_clkout", |
145 | "hclk", "pclk", "gate_dclk0" }; | 145 | "hclk", "pclk", "gate_dclk0" }; |
146 | PNAME(clkout1_s3c2412_p) = { "xti", "upll", "fclk", "hclk", "pclk", | 146 | static const char *clkout1_s3c2412_p) = { "xti", "upll", "fclk", "hclk", "pclk", |
147 | "gate_dclk1" }; | 147 | "gate_dclk1" }; |
148 | 148 | ||
149 | PNAME(clkout0_s3c2440_p) = { "xti", "upll", "fclk", "hclk", "pclk", | 149 | static const char *clkout0_s3c2440_p[] = { "xti", "upll", "fclk", "hclk", "pclk", |
150 | "gate_dclk0" }; | 150 | "gate_dclk0" }; |
151 | PNAME(clkout1_s3c2440_p) = { "mpll", "upll", "rtc_clkout", | 151 | static const char *clkout1_s3c2440_p[] = { "mpll", "upll", "rtc_clkout", |
152 | "hclk", "pclk", "gate_dclk1" }; | 152 | "hclk", "pclk", "gate_dclk1" }; |
153 | 153 | ||
154 | PNAME(dclk_s3c2443_p) = { "pclk", "epll" }; | 154 | static const char *dclk_s3c2443_p[] = { "pclk", "epll" }; |
155 | PNAME(clkout0_s3c2443_p) = { "xti", "epll", "armclk", "hclk", "pclk", | 155 | static const char *clkout0_s3c2443_p[] = { "xti", "epll", "armclk", "hclk", "pclk", |
156 | "gate_dclk0" }; | 156 | "gate_dclk0" }; |
157 | PNAME(clkout1_s3c2443_p) = { "dummy", "epll", "rtc_clkout", | 157 | static const char *clkout1_s3c2443_p[] = { "dummy", "epll", "rtc_clkout", |
158 | "hclk", "pclk", "gate_dclk1" }; | 158 | "hclk", "pclk", "gate_dclk1" }; |
159 | 159 | ||
160 | #define DCLKCON_DCLK_DIV_MASK 0xf | 160 | #define DCLKCON_DCLK_DIV_MASK 0xf |