diff options
author | Alexander Kurz <linux@kbdbabel.org> | 2011-02-20 16:45:33 -0500 |
---|---|---|
committer | Greg Ungerer <gerg@uclinux.org> | 2011-03-15 07:01:55 -0400 |
commit | 62b323e263eb180a06daa4422ae12934024f4b5e (patch) | |
tree | ab7fd575e548988ed42c2c4c4bba3e0492bbe696 /arch/m68knommu | |
parent | 745c061f98720e7be201dd2d2277e524ecf45d1c (diff) |
m68knommu: fixing compiler warnings
Signed-off-by: Alexander Kurz <linux@kbdbabel.org>
Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Diffstat (limited to 'arch/m68knommu')
-rw-r--r-- | arch/m68knommu/platform/528x/gpio.c | 210 |
1 files changed, 105 insertions, 105 deletions
diff --git a/arch/m68knommu/platform/528x/gpio.c b/arch/m68knommu/platform/528x/gpio.c index eedaf0adbcd7..526db665d87e 100644 --- a/arch/m68knommu/platform/528x/gpio.c +++ b/arch/m68knommu/platform/528x/gpio.c | |||
@@ -33,9 +33,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
33 | .base = 1, | 33 | .base = 1, |
34 | .ngpio = 7, | 34 | .ngpio = 7, |
35 | }, | 35 | }, |
36 | .pddr = MCFEPORT_EPDDR, | 36 | .pddr = (void __iomem *)MCFEPORT_EPDDR, |
37 | .podr = MCFEPORT_EPDR, | 37 | .podr = (void __iomem *)MCFEPORT_EPDR, |
38 | .ppdr = MCFEPORT_EPPDR, | 38 | .ppdr = (void __iomem *)MCFEPORT_EPPDR, |
39 | }, | 39 | }, |
40 | { | 40 | { |
41 | .gpio_chip = { | 41 | .gpio_chip = { |
@@ -49,9 +49,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
49 | .base = 8, | 49 | .base = 8, |
50 | .ngpio = 4, | 50 | .ngpio = 4, |
51 | }, | 51 | }, |
52 | .pddr = MCFGPTA_GPTDDR, | 52 | .pddr = (void __iomem *)MCFGPTA_GPTDDR, |
53 | .podr = MCFGPTA_GPTPORT, | 53 | .podr = (void __iomem *)MCFGPTA_GPTPORT, |
54 | .ppdr = MCFGPTB_GPTPORT, | 54 | .ppdr = (void __iomem *)MCFGPTB_GPTPORT, |
55 | }, | 55 | }, |
56 | { | 56 | { |
57 | .gpio_chip = { | 57 | .gpio_chip = { |
@@ -65,9 +65,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
65 | .base = 16, | 65 | .base = 16, |
66 | .ngpio = 4, | 66 | .ngpio = 4, |
67 | }, | 67 | }, |
68 | .pddr = MCFGPTB_GPTDDR, | 68 | .pddr = (void __iomem *)MCFGPTB_GPTDDR, |
69 | .podr = MCFGPTB_GPTPORT, | 69 | .podr = (void __iomem *)MCFGPTB_GPTPORT, |
70 | .ppdr = MCFGPTB_GPTPORT, | 70 | .ppdr = (void __iomem *)MCFGPTB_GPTPORT, |
71 | }, | 71 | }, |
72 | { | 72 | { |
73 | .gpio_chip = { | 73 | .gpio_chip = { |
@@ -81,9 +81,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
81 | .base = 24, | 81 | .base = 24, |
82 | .ngpio = 4, | 82 | .ngpio = 4, |
83 | }, | 83 | }, |
84 | .pddr = MCFQADC_DDRQA, | 84 | .pddr = (void __iomem *)MCFQADC_DDRQA, |
85 | .podr = MCFQADC_PORTQA, | 85 | .podr = (void __iomem *)MCFQADC_PORTQA, |
86 | .ppdr = MCFQADC_PORTQA, | 86 | .ppdr = (void __iomem *)MCFQADC_PORTQA, |
87 | }, | 87 | }, |
88 | { | 88 | { |
89 | .gpio_chip = { | 89 | .gpio_chip = { |
@@ -97,9 +97,9 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
97 | .base = 32, | 97 | .base = 32, |
98 | .ngpio = 4, | 98 | .ngpio = 4, |
99 | }, | 99 | }, |
100 | .pddr = MCFQADC_DDRQB, | 100 | .pddr = (void __iomem *)MCFQADC_DDRQB, |
101 | .podr = MCFQADC_PORTQB, | 101 | .podr = (void __iomem *)MCFQADC_PORTQB, |
102 | .ppdr = MCFQADC_PORTQB, | 102 | .ppdr = (void __iomem *)MCFQADC_PORTQB, |
103 | }, | 103 | }, |
104 | { | 104 | { |
105 | .gpio_chip = { | 105 | .gpio_chip = { |
@@ -113,11 +113,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
113 | .base = 40, | 113 | .base = 40, |
114 | .ngpio = 8, | 114 | .ngpio = 8, |
115 | }, | 115 | }, |
116 | .pddr = MCFGPIO_DDRA, | 116 | .pddr = (void __iomem *)MCFGPIO_DDRA, |
117 | .podr = MCFGPIO_PORTA, | 117 | .podr = (void __iomem *)MCFGPIO_PORTA, |
118 | .ppdr = MCFGPIO_PORTAP, | 118 | .ppdr = (void __iomem *)MCFGPIO_PORTAP, |
119 | .setr = MCFGPIO_SETA, | 119 | .setr = (void __iomem *)MCFGPIO_SETA, |
120 | .clrr = MCFGPIO_CLRA, | 120 | .clrr = (void __iomem *)MCFGPIO_CLRA, |
121 | }, | 121 | }, |
122 | { | 122 | { |
123 | .gpio_chip = { | 123 | .gpio_chip = { |
@@ -131,11 +131,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
131 | .base = 48, | 131 | .base = 48, |
132 | .ngpio = 8, | 132 | .ngpio = 8, |
133 | }, | 133 | }, |
134 | .pddr = MCFGPIO_DDRB, | 134 | .pddr = (void __iomem *)MCFGPIO_DDRB, |
135 | .podr = MCFGPIO_PORTB, | 135 | .podr = (void __iomem *)MCFGPIO_PORTB, |
136 | .ppdr = MCFGPIO_PORTBP, | 136 | .ppdr = (void __iomem *)MCFGPIO_PORTBP, |
137 | .setr = MCFGPIO_SETB, | 137 | .setr = (void __iomem *)MCFGPIO_SETB, |
138 | .clrr = MCFGPIO_CLRB, | 138 | .clrr = (void __iomem *)MCFGPIO_CLRB, |
139 | }, | 139 | }, |
140 | { | 140 | { |
141 | .gpio_chip = { | 141 | .gpio_chip = { |
@@ -149,11 +149,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
149 | .base = 56, | 149 | .base = 56, |
150 | .ngpio = 8, | 150 | .ngpio = 8, |
151 | }, | 151 | }, |
152 | .pddr = MCFGPIO_DDRC, | 152 | .pddr = (void __iomem *)MCFGPIO_DDRC, |
153 | .podr = MCFGPIO_PORTC, | 153 | .podr = (void __iomem *)MCFGPIO_PORTC, |
154 | .ppdr = MCFGPIO_PORTCP, | 154 | .ppdr = (void __iomem *)MCFGPIO_PORTCP, |
155 | .setr = MCFGPIO_SETC, | 155 | .setr = (void __iomem *)MCFGPIO_SETC, |
156 | .clrr = MCFGPIO_CLRC, | 156 | .clrr = (void __iomem *)MCFGPIO_CLRC, |
157 | }, | 157 | }, |
158 | { | 158 | { |
159 | .gpio_chip = { | 159 | .gpio_chip = { |
@@ -167,11 +167,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
167 | .base = 64, | 167 | .base = 64, |
168 | .ngpio = 8, | 168 | .ngpio = 8, |
169 | }, | 169 | }, |
170 | .pddr = MCFGPIO_DDRD, | 170 | .pddr = (void __iomem *)MCFGPIO_DDRD, |
171 | .podr = MCFGPIO_PORTD, | 171 | .podr = (void __iomem *)MCFGPIO_PORTD, |
172 | .ppdr = MCFGPIO_PORTDP, | 172 | .ppdr = (void __iomem *)MCFGPIO_PORTDP, |
173 | .setr = MCFGPIO_SETD, | 173 | .setr = (void __iomem *)MCFGPIO_SETD, |
174 | .clrr = MCFGPIO_CLRD, | 174 | .clrr = (void __iomem *)MCFGPIO_CLRD, |
175 | }, | 175 | }, |
176 | { | 176 | { |
177 | .gpio_chip = { | 177 | .gpio_chip = { |
@@ -185,11 +185,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
185 | .base = 72, | 185 | .base = 72, |
186 | .ngpio = 8, | 186 | .ngpio = 8, |
187 | }, | 187 | }, |
188 | .pddr = MCFGPIO_DDRE, | 188 | .pddr = (void __iomem *)MCFGPIO_DDRE, |
189 | .podr = MCFGPIO_PORTE, | 189 | .podr = (void __iomem *)MCFGPIO_PORTE, |
190 | .ppdr = MCFGPIO_PORTEP, | 190 | .ppdr = (void __iomem *)MCFGPIO_PORTEP, |
191 | .setr = MCFGPIO_SETE, | 191 | .setr = (void __iomem *)MCFGPIO_SETE, |
192 | .clrr = MCFGPIO_CLRE, | 192 | .clrr = (void __iomem *)MCFGPIO_CLRE, |
193 | }, | 193 | }, |
194 | { | 194 | { |
195 | .gpio_chip = { | 195 | .gpio_chip = { |
@@ -203,11 +203,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
203 | .base = 80, | 203 | .base = 80, |
204 | .ngpio = 8, | 204 | .ngpio = 8, |
205 | }, | 205 | }, |
206 | .pddr = MCFGPIO_DDRF, | 206 | .pddr = (void __iomem *)MCFGPIO_DDRF, |
207 | .podr = MCFGPIO_PORTF, | 207 | .podr = (void __iomem *)MCFGPIO_PORTF, |
208 | .ppdr = MCFGPIO_PORTFP, | 208 | .ppdr = (void __iomem *)MCFGPIO_PORTFP, |
209 | .setr = MCFGPIO_SETF, | 209 | .setr = (void __iomem *)MCFGPIO_SETF, |
210 | .clrr = MCFGPIO_CLRF, | 210 | .clrr = (void __iomem *)MCFGPIO_CLRF, |
211 | }, | 211 | }, |
212 | { | 212 | { |
213 | .gpio_chip = { | 213 | .gpio_chip = { |
@@ -221,11 +221,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
221 | .base = 88, | 221 | .base = 88, |
222 | .ngpio = 8, | 222 | .ngpio = 8, |
223 | }, | 223 | }, |
224 | .pddr = MCFGPIO_DDRG, | 224 | .pddr = (void __iomem *)MCFGPIO_DDRG, |
225 | .podr = MCFGPIO_PORTG, | 225 | .podr = (void __iomem *)MCFGPIO_PORTG, |
226 | .ppdr = MCFGPIO_PORTGP, | 226 | .ppdr = (void __iomem *)MCFGPIO_PORTGP, |
227 | .setr = MCFGPIO_SETG, | 227 | .setr = (void __iomem *)MCFGPIO_SETG, |
228 | .clrr = MCFGPIO_CLRG, | 228 | .clrr = (void __iomem *)MCFGPIO_CLRG, |
229 | }, | 229 | }, |
230 | { | 230 | { |
231 | .gpio_chip = { | 231 | .gpio_chip = { |
@@ -239,11 +239,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
239 | .base = 96, | 239 | .base = 96, |
240 | .ngpio = 8, | 240 | .ngpio = 8, |
241 | }, | 241 | }, |
242 | .pddr = MCFGPIO_DDRH, | 242 | .pddr = (void __iomem *)MCFGPIO_DDRH, |
243 | .podr = MCFGPIO_PORTH, | 243 | .podr = (void __iomem *)MCFGPIO_PORTH, |
244 | .ppdr = MCFGPIO_PORTHP, | 244 | .ppdr = (void __iomem *)MCFGPIO_PORTHP, |
245 | .setr = MCFGPIO_SETH, | 245 | .setr = (void __iomem *)MCFGPIO_SETH, |
246 | .clrr = MCFGPIO_CLRH, | 246 | .clrr = (void __iomem *)MCFGPIO_CLRH, |
247 | }, | 247 | }, |
248 | { | 248 | { |
249 | .gpio_chip = { | 249 | .gpio_chip = { |
@@ -257,11 +257,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
257 | .base = 104, | 257 | .base = 104, |
258 | .ngpio = 8, | 258 | .ngpio = 8, |
259 | }, | 259 | }, |
260 | .pddr = MCFGPIO_DDRJ, | 260 | .pddr = (void __iomem *)MCFGPIO_DDRJ, |
261 | .podr = MCFGPIO_PORTJ, | 261 | .podr = (void __iomem *)MCFGPIO_PORTJ, |
262 | .ppdr = MCFGPIO_PORTJP, | 262 | .ppdr = (void __iomem *)MCFGPIO_PORTJP, |
263 | .setr = MCFGPIO_SETJ, | 263 | .setr = (void __iomem *)MCFGPIO_SETJ, |
264 | .clrr = MCFGPIO_CLRJ, | 264 | .clrr = (void __iomem *)MCFGPIO_CLRJ, |
265 | }, | 265 | }, |
266 | { | 266 | { |
267 | .gpio_chip = { | 267 | .gpio_chip = { |
@@ -275,11 +275,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
275 | .base = 112, | 275 | .base = 112, |
276 | .ngpio = 8, | 276 | .ngpio = 8, |
277 | }, | 277 | }, |
278 | .pddr = MCFGPIO_DDRDD, | 278 | .pddr = (void __iomem *)MCFGPIO_DDRDD, |
279 | .podr = MCFGPIO_PORTDD, | 279 | .podr = (void __iomem *)MCFGPIO_PORTDD, |
280 | .ppdr = MCFGPIO_PORTDDP, | 280 | .ppdr = (void __iomem *)MCFGPIO_PORTDDP, |
281 | .setr = MCFGPIO_SETDD, | 281 | .setr = (void __iomem *)MCFGPIO_SETDD, |
282 | .clrr = MCFGPIO_CLRDD, | 282 | .clrr = (void __iomem *)MCFGPIO_CLRDD, |
283 | }, | 283 | }, |
284 | { | 284 | { |
285 | .gpio_chip = { | 285 | .gpio_chip = { |
@@ -293,11 +293,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
293 | .base = 120, | 293 | .base = 120, |
294 | .ngpio = 8, | 294 | .ngpio = 8, |
295 | }, | 295 | }, |
296 | .pddr = MCFGPIO_DDREH, | 296 | .pddr = (void __iomem *)MCFGPIO_DDREH, |
297 | .podr = MCFGPIO_PORTEH, | 297 | .podr = (void __iomem *)MCFGPIO_PORTEH, |
298 | .ppdr = MCFGPIO_PORTEHP, | 298 | .ppdr = (void __iomem *)MCFGPIO_PORTEHP, |
299 | .setr = MCFGPIO_SETEH, | 299 | .setr = (void __iomem *)MCFGPIO_SETEH, |
300 | .clrr = MCFGPIO_CLREH, | 300 | .clrr = (void __iomem *)MCFGPIO_CLREH, |
301 | }, | 301 | }, |
302 | { | 302 | { |
303 | .gpio_chip = { | 303 | .gpio_chip = { |
@@ -311,11 +311,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
311 | .base = 128, | 311 | .base = 128, |
312 | .ngpio = 8, | 312 | .ngpio = 8, |
313 | }, | 313 | }, |
314 | .pddr = MCFGPIO_DDREL, | 314 | .pddr = (void __iomem *)MCFGPIO_DDREL, |
315 | .podr = MCFGPIO_PORTEL, | 315 | .podr = (void __iomem *)MCFGPIO_PORTEL, |
316 | .ppdr = MCFGPIO_PORTELP, | 316 | .ppdr = (void __iomem *)MCFGPIO_PORTELP, |
317 | .setr = MCFGPIO_SETEL, | 317 | .setr = (void __iomem *)MCFGPIO_SETEL, |
318 | .clrr = MCFGPIO_CLREL, | 318 | .clrr = (void __iomem *)MCFGPIO_CLREL, |
319 | }, | 319 | }, |
320 | { | 320 | { |
321 | .gpio_chip = { | 321 | .gpio_chip = { |
@@ -329,11 +329,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
329 | .base = 136, | 329 | .base = 136, |
330 | .ngpio = 6, | 330 | .ngpio = 6, |
331 | }, | 331 | }, |
332 | .pddr = MCFGPIO_DDRAS, | 332 | .pddr = (void __iomem *)MCFGPIO_DDRAS, |
333 | .podr = MCFGPIO_PORTAS, | 333 | .podr = (void __iomem *)MCFGPIO_PORTAS, |
334 | .ppdr = MCFGPIO_PORTASP, | 334 | .ppdr = (void __iomem *)MCFGPIO_PORTASP, |
335 | .setr = MCFGPIO_SETAS, | 335 | .setr = (void __iomem *)MCFGPIO_SETAS, |
336 | .clrr = MCFGPIO_CLRAS, | 336 | .clrr = (void __iomem *)MCFGPIO_CLRAS, |
337 | }, | 337 | }, |
338 | { | 338 | { |
339 | .gpio_chip = { | 339 | .gpio_chip = { |
@@ -347,11 +347,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
347 | .base = 144, | 347 | .base = 144, |
348 | .ngpio = 7, | 348 | .ngpio = 7, |
349 | }, | 349 | }, |
350 | .pddr = MCFGPIO_DDRQS, | 350 | .pddr = (void __iomem *)MCFGPIO_DDRQS, |
351 | .podr = MCFGPIO_PORTQS, | 351 | .podr = (void __iomem *)MCFGPIO_PORTQS, |
352 | .ppdr = MCFGPIO_PORTQSP, | 352 | .ppdr = (void __iomem *)MCFGPIO_PORTQSP, |
353 | .setr = MCFGPIO_SETQS, | 353 | .setr = (void __iomem *)MCFGPIO_SETQS, |
354 | .clrr = MCFGPIO_CLRQS, | 354 | .clrr = (void __iomem *)MCFGPIO_CLRQS, |
355 | }, | 355 | }, |
356 | { | 356 | { |
357 | .gpio_chip = { | 357 | .gpio_chip = { |
@@ -365,11 +365,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
365 | .base = 152, | 365 | .base = 152, |
366 | .ngpio = 6, | 366 | .ngpio = 6, |
367 | }, | 367 | }, |
368 | .pddr = MCFGPIO_DDRSD, | 368 | .pddr = (void __iomem *)MCFGPIO_DDRSD, |
369 | .podr = MCFGPIO_PORTSD, | 369 | .podr = (void __iomem *)MCFGPIO_PORTSD, |
370 | .ppdr = MCFGPIO_PORTSDP, | 370 | .ppdr = (void __iomem *)MCFGPIO_PORTSDP, |
371 | .setr = MCFGPIO_SETSD, | 371 | .setr = (void __iomem *)MCFGPIO_SETSD, |
372 | .clrr = MCFGPIO_CLRSD, | 372 | .clrr = (void __iomem *)MCFGPIO_CLRSD, |
373 | }, | 373 | }, |
374 | { | 374 | { |
375 | .gpio_chip = { | 375 | .gpio_chip = { |
@@ -383,11 +383,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
383 | .base = 160, | 383 | .base = 160, |
384 | .ngpio = 4, | 384 | .ngpio = 4, |
385 | }, | 385 | }, |
386 | .pddr = MCFGPIO_DDRTC, | 386 | .pddr = (void __iomem *)MCFGPIO_DDRTC, |
387 | .podr = MCFGPIO_PORTTC, | 387 | .podr = (void __iomem *)MCFGPIO_PORTTC, |
388 | .ppdr = MCFGPIO_PORTTCP, | 388 | .ppdr = (void __iomem *)MCFGPIO_PORTTCP, |
389 | .setr = MCFGPIO_SETTC, | 389 | .setr = (void __iomem *)MCFGPIO_SETTC, |
390 | .clrr = MCFGPIO_CLRTC, | 390 | .clrr = (void __iomem *)MCFGPIO_CLRTC, |
391 | }, | 391 | }, |
392 | { | 392 | { |
393 | .gpio_chip = { | 393 | .gpio_chip = { |
@@ -401,11 +401,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
401 | .base = 168, | 401 | .base = 168, |
402 | .ngpio = 4, | 402 | .ngpio = 4, |
403 | }, | 403 | }, |
404 | .pddr = MCFGPIO_DDRTD, | 404 | .pddr = (void __iomem *)MCFGPIO_DDRTD, |
405 | .podr = MCFGPIO_PORTTD, | 405 | .podr = (void __iomem *)MCFGPIO_PORTTD, |
406 | .ppdr = MCFGPIO_PORTTDP, | 406 | .ppdr = (void __iomem *)MCFGPIO_PORTTDP, |
407 | .setr = MCFGPIO_SETTD, | 407 | .setr = (void __iomem *)MCFGPIO_SETTD, |
408 | .clrr = MCFGPIO_CLRTD, | 408 | .clrr = (void __iomem *)MCFGPIO_CLRTD, |
409 | }, | 409 | }, |
410 | { | 410 | { |
411 | .gpio_chip = { | 411 | .gpio_chip = { |
@@ -419,11 +419,11 @@ static struct mcf_gpio_chip mcf_gpio_chips[] = { | |||
419 | .base = 176, | 419 | .base = 176, |
420 | .ngpio = 4, | 420 | .ngpio = 4, |
421 | }, | 421 | }, |
422 | .pddr = MCFGPIO_DDRUA, | 422 | .pddr = (void __iomem *)MCFGPIO_DDRUA, |
423 | .podr = MCFGPIO_PORTUA, | 423 | .podr = (void __iomem *)MCFGPIO_PORTUA, |
424 | .ppdr = MCFGPIO_PORTUAP, | 424 | .ppdr = (void __iomem *)MCFGPIO_PORTUAP, |
425 | .setr = MCFGPIO_SETUA, | 425 | .setr = (void __iomem *)MCFGPIO_SETUA, |
426 | .clrr = MCFGPIO_CLRUA, | 426 | .clrr = (void __iomem *)MCFGPIO_CLRUA, |
427 | }, | 427 | }, |
428 | }; | 428 | }; |
429 | 429 | ||