diff options
Diffstat (limited to 'drivers/input/keyboard')
40 files changed, 43 insertions, 43 deletions
diff --git a/drivers/input/keyboard/adp5520-keys.c b/drivers/input/keyboard/adp5520-keys.c index 64de9652398f..ef26b17fb159 100644 --- a/drivers/input/keyboard/adp5520-keys.c +++ b/drivers/input/keyboard/adp5520-keys.c | |||
@@ -182,7 +182,7 @@ err: | |||
182 | return ret; | 182 | return ret; |
183 | } | 183 | } |
184 | 184 | ||
185 | static int __devexit adp5520_keys_remove(struct platform_device *pdev) | 185 | static int adp5520_keys_remove(struct platform_device *pdev) |
186 | { | 186 | { |
187 | struct adp5520_keys *dev = platform_get_drvdata(pdev); | 187 | struct adp5520_keys *dev = platform_get_drvdata(pdev); |
188 | 188 | ||
diff --git a/drivers/input/keyboard/adp5588-keys.c b/drivers/input/keyboard/adp5588-keys.c index a20fe70ffa83..dbd2047f1641 100644 --- a/drivers/input/keyboard/adp5588-keys.c +++ b/drivers/input/keyboard/adp5588-keys.c | |||
@@ -224,7 +224,7 @@ static int adp5588_gpio_add(struct adp5588_kpad *kpad) | |||
224 | return 0; | 224 | return 0; |
225 | } | 225 | } |
226 | 226 | ||
227 | static void __devexit adp5588_gpio_remove(struct adp5588_kpad *kpad) | 227 | static void adp5588_gpio_remove(struct adp5588_kpad *kpad) |
228 | { | 228 | { |
229 | struct device *dev = &kpad->client->dev; | 229 | struct device *dev = &kpad->client->dev; |
230 | const struct adp5588_kpad_platform_data *pdata = dev->platform_data; | 230 | const struct adp5588_kpad_platform_data *pdata = dev->platform_data; |
@@ -587,7 +587,7 @@ static int adp5588_probe(struct i2c_client *client, | |||
587 | return error; | 587 | return error; |
588 | } | 588 | } |
589 | 589 | ||
590 | static int __devexit adp5588_remove(struct i2c_client *client) | 590 | static int adp5588_remove(struct i2c_client *client) |
591 | { | 591 | { |
592 | struct adp5588_kpad *kpad = i2c_get_clientdata(client); | 592 | struct adp5588_kpad *kpad = i2c_get_clientdata(client); |
593 | 593 | ||
diff --git a/drivers/input/keyboard/adp5589-keys.c b/drivers/input/keyboard/adp5589-keys.c index 8f591da17deb..67d12b3427c9 100644 --- a/drivers/input/keyboard/adp5589-keys.c +++ b/drivers/input/keyboard/adp5589-keys.c | |||
@@ -550,7 +550,7 @@ static int adp5589_gpio_add(struct adp5589_kpad *kpad) | |||
550 | return 0; | 550 | return 0; |
551 | } | 551 | } |
552 | 552 | ||
553 | static void __devexit adp5589_gpio_remove(struct adp5589_kpad *kpad) | 553 | static void adp5589_gpio_remove(struct adp5589_kpad *kpad) |
554 | { | 554 | { |
555 | struct device *dev = &kpad->client->dev; | 555 | struct device *dev = &kpad->client->dev; |
556 | const struct adp5589_kpad_platform_data *pdata = dev->platform_data; | 556 | const struct adp5589_kpad_platform_data *pdata = dev->platform_data; |
@@ -1044,7 +1044,7 @@ err_free_mem: | |||
1044 | return error; | 1044 | return error; |
1045 | } | 1045 | } |
1046 | 1046 | ||
1047 | static int __devexit adp5589_remove(struct i2c_client *client) | 1047 | static int adp5589_remove(struct i2c_client *client) |
1048 | { | 1048 | { |
1049 | struct adp5589_kpad *kpad = i2c_get_clientdata(client); | 1049 | struct adp5589_kpad *kpad = i2c_get_clientdata(client); |
1050 | 1050 | ||
diff --git a/drivers/input/keyboard/bf54x-keys.c b/drivers/input/keyboard/bf54x-keys.c index 8f3c2b665382..20b9fa91fb9e 100644 --- a/drivers/input/keyboard/bf54x-keys.c +++ b/drivers/input/keyboard/bf54x-keys.c | |||
@@ -331,7 +331,7 @@ out: | |||
331 | return error; | 331 | return error; |
332 | } | 332 | } |
333 | 333 | ||
334 | static int __devexit bfin_kpad_remove(struct platform_device *pdev) | 334 | static int bfin_kpad_remove(struct platform_device *pdev) |
335 | { | 335 | { |
336 | struct bfin_kpad_platform_data *pdata = pdev->dev.platform_data; | 336 | struct bfin_kpad_platform_data *pdata = pdev->dev.platform_data; |
337 | struct bf54x_kpad *bf54x_kpad = platform_get_drvdata(pdev); | 337 | struct bf54x_kpad *bf54x_kpad = platform_get_drvdata(pdev); |
diff --git a/drivers/input/keyboard/davinci_keyscan.c b/drivers/input/keyboard/davinci_keyscan.c index 8e4b438ddc8d..4e4e453ea15e 100644 --- a/drivers/input/keyboard/davinci_keyscan.c +++ b/drivers/input/keyboard/davinci_keyscan.c | |||
@@ -303,7 +303,7 @@ fail1: | |||
303 | return error; | 303 | return error; |
304 | } | 304 | } |
305 | 305 | ||
306 | static int __devexit davinci_ks_remove(struct platform_device *pdev) | 306 | static int davinci_ks_remove(struct platform_device *pdev) |
307 | { | 307 | { |
308 | struct davinci_ks *davinci_ks = platform_get_drvdata(pdev); | 308 | struct davinci_ks *davinci_ks = platform_get_drvdata(pdev); |
309 | 309 | ||
diff --git a/drivers/input/keyboard/ep93xx_keypad.c b/drivers/input/keyboard/ep93xx_keypad.c index 30c00082ed90..9857e8fd0987 100644 --- a/drivers/input/keyboard/ep93xx_keypad.c +++ b/drivers/input/keyboard/ep93xx_keypad.c | |||
@@ -346,7 +346,7 @@ failed_free: | |||
346 | return err; | 346 | return err; |
347 | } | 347 | } |
348 | 348 | ||
349 | static int __devexit ep93xx_keypad_remove(struct platform_device *pdev) | 349 | static int ep93xx_keypad_remove(struct platform_device *pdev) |
350 | { | 350 | { |
351 | struct ep93xx_keypad *keypad = platform_get_drvdata(pdev); | 351 | struct ep93xx_keypad *keypad = platform_get_drvdata(pdev); |
352 | struct resource *res; | 352 | struct resource *res; |
diff --git a/drivers/input/keyboard/gpio_keys.c b/drivers/input/keyboard/gpio_keys.c index c714c585c307..1a5cb6f34f4c 100644 --- a/drivers/input/keyboard/gpio_keys.c +++ b/drivers/input/keyboard/gpio_keys.c | |||
@@ -760,7 +760,7 @@ static int gpio_keys_probe(struct platform_device *pdev) | |||
760 | return error; | 760 | return error; |
761 | } | 761 | } |
762 | 762 | ||
763 | static int __devexit gpio_keys_remove(struct platform_device *pdev) | 763 | static int gpio_keys_remove(struct platform_device *pdev) |
764 | { | 764 | { |
765 | struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev); | 765 | struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev); |
766 | struct input_dev *input = ddata->input; | 766 | struct input_dev *input = ddata->input; |
diff --git a/drivers/input/keyboard/gpio_keys_polled.c b/drivers/input/keyboard/gpio_keys_polled.c index 8c09ce244aa2..32e508781ddc 100644 --- a/drivers/input/keyboard/gpio_keys_polled.c +++ b/drivers/input/keyboard/gpio_keys_polled.c | |||
@@ -328,7 +328,7 @@ err_free_pdata: | |||
328 | return error; | 328 | return error; |
329 | } | 329 | } |
330 | 330 | ||
331 | static int __devexit gpio_keys_polled_remove(struct platform_device *pdev) | 331 | static int gpio_keys_polled_remove(struct platform_device *pdev) |
332 | { | 332 | { |
333 | struct gpio_keys_polled_dev *bdev = platform_get_drvdata(pdev); | 333 | struct gpio_keys_polled_dev *bdev = platform_get_drvdata(pdev); |
334 | const struct gpio_keys_platform_data *pdata = bdev->pdata; | 334 | const struct gpio_keys_platform_data *pdata = bdev->pdata; |
diff --git a/drivers/input/keyboard/hilkbd.c b/drivers/input/keyboard/hilkbd.c index a5da05ac6094..198dc07a1be5 100644 --- a/drivers/input/keyboard/hilkbd.c +++ b/drivers/input/keyboard/hilkbd.c | |||
@@ -286,7 +286,7 @@ err1: | |||
286 | return err; | 286 | return err; |
287 | } | 287 | } |
288 | 288 | ||
289 | static void __devexit hil_keyb_exit(void) | 289 | static void hil_keyb_exit(void) |
290 | { | 290 | { |
291 | if (HIL_IRQ) | 291 | if (HIL_IRQ) |
292 | free_irq(HIL_IRQ, hil_dev.dev_id); | 292 | free_irq(HIL_IRQ, hil_dev.dev_id); |
@@ -320,7 +320,7 @@ static int hil_probe_chip(struct parisc_device *dev) | |||
320 | return hil_keyb_init(); | 320 | return hil_keyb_init(); |
321 | } | 321 | } |
322 | 322 | ||
323 | static int __devexit hil_remove_chip(struct parisc_device *dev) | 323 | static int hil_remove_chip(struct parisc_device *dev) |
324 | { | 324 | { |
325 | hil_keyb_exit(); | 325 | hil_keyb_exit(); |
326 | 326 | ||
diff --git a/drivers/input/keyboard/imx_keypad.c b/drivers/input/keyboard/imx_keypad.c index d4d95428c276..7ad74517654b 100644 --- a/drivers/input/keyboard/imx_keypad.c +++ b/drivers/input/keyboard/imx_keypad.c | |||
@@ -554,7 +554,7 @@ failed_rel_mem: | |||
554 | return error; | 554 | return error; |
555 | } | 555 | } |
556 | 556 | ||
557 | static int __devexit imx_keypad_remove(struct platform_device *pdev) | 557 | static int imx_keypad_remove(struct platform_device *pdev) |
558 | { | 558 | { |
559 | struct imx_keypad *keypad = platform_get_drvdata(pdev); | 559 | struct imx_keypad *keypad = platform_get_drvdata(pdev); |
560 | struct resource *res; | 560 | struct resource *res; |
diff --git a/drivers/input/keyboard/jornada680_kbd.c b/drivers/input/keyboard/jornada680_kbd.c index eac650c26ad4..74e75a6e8deb 100644 --- a/drivers/input/keyboard/jornada680_kbd.c +++ b/drivers/input/keyboard/jornada680_kbd.c | |||
@@ -240,7 +240,7 @@ static int jornada680kbd_probe(struct platform_device *pdev) | |||
240 | 240 | ||
241 | } | 241 | } |
242 | 242 | ||
243 | static int __devexit jornada680kbd_remove(struct platform_device *pdev) | 243 | static int jornada680kbd_remove(struct platform_device *pdev) |
244 | { | 244 | { |
245 | struct jornadakbd *jornadakbd = platform_get_drvdata(pdev); | 245 | struct jornadakbd *jornadakbd = platform_get_drvdata(pdev); |
246 | 246 | ||
diff --git a/drivers/input/keyboard/jornada720_kbd.c b/drivers/input/keyboard/jornada720_kbd.c index 2f08a03e7cba..5ceef636df2f 100644 --- a/drivers/input/keyboard/jornada720_kbd.c +++ b/drivers/input/keyboard/jornada720_kbd.c | |||
@@ -152,7 +152,7 @@ static int jornada720_kbd_probe(struct platform_device *pdev) | |||
152 | return err; | 152 | return err; |
153 | }; | 153 | }; |
154 | 154 | ||
155 | static int __devexit jornada720_kbd_remove(struct platform_device *pdev) | 155 | static int jornada720_kbd_remove(struct platform_device *pdev) |
156 | { | 156 | { |
157 | struct jornadakbd *jornadakbd = platform_get_drvdata(pdev); | 157 | struct jornadakbd *jornadakbd = platform_get_drvdata(pdev); |
158 | 158 | ||
diff --git a/drivers/input/keyboard/lm8323.c b/drivers/input/keyboard/lm8323.c index ee0116b0a427..93c812662134 100644 --- a/drivers/input/keyboard/lm8323.c +++ b/drivers/input/keyboard/lm8323.c | |||
@@ -764,7 +764,7 @@ fail1: | |||
764 | return err; | 764 | return err; |
765 | } | 765 | } |
766 | 766 | ||
767 | static int __devexit lm8323_remove(struct i2c_client *client) | 767 | static int lm8323_remove(struct i2c_client *client) |
768 | { | 768 | { |
769 | struct lm8323_chip *lm = i2c_get_clientdata(client); | 769 | struct lm8323_chip *lm = i2c_get_clientdata(client); |
770 | int i; | 770 | int i; |
diff --git a/drivers/input/keyboard/lm8333.c b/drivers/input/keyboard/lm8333.c index 9fc03727d61d..5a8ca35dc9af 100644 --- a/drivers/input/keyboard/lm8333.c +++ b/drivers/input/keyboard/lm8333.c | |||
@@ -202,7 +202,7 @@ static int lm8333_probe(struct i2c_client *client, | |||
202 | return err; | 202 | return err; |
203 | } | 203 | } |
204 | 204 | ||
205 | static int __devexit lm8333_remove(struct i2c_client *client) | 205 | static int lm8333_remove(struct i2c_client *client) |
206 | { | 206 | { |
207 | struct lm8333 *lm8333 = i2c_get_clientdata(client); | 207 | struct lm8333 *lm8333 = i2c_get_clientdata(client); |
208 | 208 | ||
diff --git a/drivers/input/keyboard/locomokbd.c b/drivers/input/keyboard/locomokbd.c index e2892466f3cc..c94d610b9d78 100644 --- a/drivers/input/keyboard/locomokbd.c +++ b/drivers/input/keyboard/locomokbd.c | |||
@@ -321,7 +321,7 @@ static int locomokbd_probe(struct locomo_dev *dev) | |||
321 | return err; | 321 | return err; |
322 | } | 322 | } |
323 | 323 | ||
324 | static int __devexit locomokbd_remove(struct locomo_dev *dev) | 324 | static int locomokbd_remove(struct locomo_dev *dev) |
325 | { | 325 | { |
326 | struct locomokbd *locomokbd = locomo_get_drvdata(dev); | 326 | struct locomokbd *locomokbd = locomo_get_drvdata(dev); |
327 | 327 | ||
diff --git a/drivers/input/keyboard/lpc32xx-keys.c b/drivers/input/keyboard/lpc32xx-keys.c index 72f8a0be82e1..1b8add6cfb9d 100644 --- a/drivers/input/keyboard/lpc32xx-keys.c +++ b/drivers/input/keyboard/lpc32xx-keys.c | |||
@@ -310,7 +310,7 @@ err_free_mem: | |||
310 | return error; | 310 | return error; |
311 | } | 311 | } |
312 | 312 | ||
313 | static int __devexit lpc32xx_kscan_remove(struct platform_device *pdev) | 313 | static int lpc32xx_kscan_remove(struct platform_device *pdev) |
314 | { | 314 | { |
315 | struct lpc32xx_kscan_drv *kscandat = platform_get_drvdata(pdev); | 315 | struct lpc32xx_kscan_drv *kscandat = platform_get_drvdata(pdev); |
316 | 316 | ||
diff --git a/drivers/input/keyboard/matrix_keypad.c b/drivers/input/keyboard/matrix_keypad.c index b9d67c2f30d6..f4ff0dda7597 100644 --- a/drivers/input/keyboard/matrix_keypad.c +++ b/drivers/input/keyboard/matrix_keypad.c | |||
@@ -539,7 +539,7 @@ err_free_mem: | |||
539 | return err; | 539 | return err; |
540 | } | 540 | } |
541 | 541 | ||
542 | static int __devexit matrix_keypad_remove(struct platform_device *pdev) | 542 | static int matrix_keypad_remove(struct platform_device *pdev) |
543 | { | 543 | { |
544 | struct matrix_keypad *keypad = platform_get_drvdata(pdev); | 544 | struct matrix_keypad *keypad = platform_get_drvdata(pdev); |
545 | 545 | ||
diff --git a/drivers/input/keyboard/max7359_keypad.c b/drivers/input/keyboard/max7359_keypad.c index 98b8ff10e6f1..7c7af2b01e65 100644 --- a/drivers/input/keyboard/max7359_keypad.c +++ b/drivers/input/keyboard/max7359_keypad.c | |||
@@ -260,7 +260,7 @@ failed_free_mem: | |||
260 | return error; | 260 | return error; |
261 | } | 261 | } |
262 | 262 | ||
263 | static int __devexit max7359_remove(struct i2c_client *client) | 263 | static int max7359_remove(struct i2c_client *client) |
264 | { | 264 | { |
265 | struct max7359_keypad *keypad = i2c_get_clientdata(client); | 265 | struct max7359_keypad *keypad = i2c_get_clientdata(client); |
266 | 266 | ||
diff --git a/drivers/input/keyboard/mcs_touchkey.c b/drivers/input/keyboard/mcs_touchkey.c index e729774cecd8..7c236f9c6a51 100644 --- a/drivers/input/keyboard/mcs_touchkey.c +++ b/drivers/input/keyboard/mcs_touchkey.c | |||
@@ -200,7 +200,7 @@ err_free_mem: | |||
200 | return error; | 200 | return error; |
201 | } | 201 | } |
202 | 202 | ||
203 | static int __devexit mcs_touchkey_remove(struct i2c_client *client) | 203 | static int mcs_touchkey_remove(struct i2c_client *client) |
204 | { | 204 | { |
205 | struct mcs_touchkey_data *data = i2c_get_clientdata(client); | 205 | struct mcs_touchkey_data *data = i2c_get_clientdata(client); |
206 | 206 | ||
diff --git a/drivers/input/keyboard/mpr121_touchkey.c b/drivers/input/keyboard/mpr121_touchkey.c index 854486c347fe..f7f3e9a9fd3f 100644 --- a/drivers/input/keyboard/mpr121_touchkey.c +++ b/drivers/input/keyboard/mpr121_touchkey.c | |||
@@ -272,7 +272,7 @@ err_free_mem: | |||
272 | return error; | 272 | return error; |
273 | } | 273 | } |
274 | 274 | ||
275 | static int __devexit mpr_touchkey_remove(struct i2c_client *client) | 275 | static int mpr_touchkey_remove(struct i2c_client *client) |
276 | { | 276 | { |
277 | struct mpr121_touchkey *mpr121 = i2c_get_clientdata(client); | 277 | struct mpr121_touchkey *mpr121 = i2c_get_clientdata(client); |
278 | 278 | ||
diff --git a/drivers/input/keyboard/nomadik-ske-keypad.c b/drivers/input/keyboard/nomadik-ske-keypad.c index 2304a8192cf7..0e6a8151fee3 100644 --- a/drivers/input/keyboard/nomadik-ske-keypad.c +++ b/drivers/input/keyboard/nomadik-ske-keypad.c | |||
@@ -366,7 +366,7 @@ err_free_mem: | |||
366 | return error; | 366 | return error; |
367 | } | 367 | } |
368 | 368 | ||
369 | static int __devexit ske_keypad_remove(struct platform_device *pdev) | 369 | static int ske_keypad_remove(struct platform_device *pdev) |
370 | { | 370 | { |
371 | struct ske_keypad *keypad = platform_get_drvdata(pdev); | 371 | struct ske_keypad *keypad = platform_get_drvdata(pdev); |
372 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 372 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
diff --git a/drivers/input/keyboard/omap-keypad.c b/drivers/input/keyboard/omap-keypad.c index ffb8c6c1c5dc..d0d5226d9cd4 100644 --- a/drivers/input/keyboard/omap-keypad.c +++ b/drivers/input/keyboard/omap-keypad.c | |||
@@ -357,7 +357,7 @@ err2: | |||
357 | return -EINVAL; | 357 | return -EINVAL; |
358 | } | 358 | } |
359 | 359 | ||
360 | static int __devexit omap_kp_remove(struct platform_device *pdev) | 360 | static int omap_kp_remove(struct platform_device *pdev) |
361 | { | 361 | { |
362 | struct omap_kp *omap_kp = platform_get_drvdata(pdev); | 362 | struct omap_kp *omap_kp = platform_get_drvdata(pdev); |
363 | 363 | ||
diff --git a/drivers/input/keyboard/omap4-keypad.c b/drivers/input/keyboard/omap4-keypad.c index c16a3229968c..e25b022692cd 100644 --- a/drivers/input/keyboard/omap4-keypad.c +++ b/drivers/input/keyboard/omap4-keypad.c | |||
@@ -406,7 +406,7 @@ err_free_keypad: | |||
406 | return error; | 406 | return error; |
407 | } | 407 | } |
408 | 408 | ||
409 | static int __devexit omap4_keypad_remove(struct platform_device *pdev) | 409 | static int omap4_keypad_remove(struct platform_device *pdev) |
410 | { | 410 | { |
411 | struct omap4_keypad *keypad_data = platform_get_drvdata(pdev); | 411 | struct omap4_keypad *keypad_data = platform_get_drvdata(pdev); |
412 | struct resource *res; | 412 | struct resource *res; |
diff --git a/drivers/input/keyboard/opencores-kbd.c b/drivers/input/keyboard/opencores-kbd.c index ddc1c39c0c31..7ac5f174c6f7 100644 --- a/drivers/input/keyboard/opencores-kbd.c +++ b/drivers/input/keyboard/opencores-kbd.c | |||
@@ -139,7 +139,7 @@ static int opencores_kbd_probe(struct platform_device *pdev) | |||
139 | return error; | 139 | return error; |
140 | } | 140 | } |
141 | 141 | ||
142 | static int __devexit opencores_kbd_remove(struct platform_device *pdev) | 142 | static int opencores_kbd_remove(struct platform_device *pdev) |
143 | { | 143 | { |
144 | struct opencores_kbd *opencores_kbd = platform_get_drvdata(pdev); | 144 | struct opencores_kbd *opencores_kbd = platform_get_drvdata(pdev); |
145 | 145 | ||
diff --git a/drivers/input/keyboard/pmic8xxx-keypad.c b/drivers/input/keyboard/pmic8xxx-keypad.c index fa177aba5dbe..74339e139d43 100644 --- a/drivers/input/keyboard/pmic8xxx-keypad.c +++ b/drivers/input/keyboard/pmic8xxx-keypad.c | |||
@@ -712,7 +712,7 @@ err_alloc_device: | |||
712 | return rc; | 712 | return rc; |
713 | } | 713 | } |
714 | 714 | ||
715 | static int __devexit pmic8xxx_kp_remove(struct platform_device *pdev) | 715 | static int pmic8xxx_kp_remove(struct platform_device *pdev) |
716 | { | 716 | { |
717 | struct pmic8xxx_kp *kp = platform_get_drvdata(pdev); | 717 | struct pmic8xxx_kp *kp = platform_get_drvdata(pdev); |
718 | 718 | ||
diff --git a/drivers/input/keyboard/pxa27x_keypad.c b/drivers/input/keyboard/pxa27x_keypad.c index 91778fee8b99..5330d8fbf6c0 100644 --- a/drivers/input/keyboard/pxa27x_keypad.c +++ b/drivers/input/keyboard/pxa27x_keypad.c | |||
@@ -595,7 +595,7 @@ failed_free: | |||
595 | return error; | 595 | return error; |
596 | } | 596 | } |
597 | 597 | ||
598 | static int __devexit pxa27x_keypad_remove(struct platform_device *pdev) | 598 | static int pxa27x_keypad_remove(struct platform_device *pdev) |
599 | { | 599 | { |
600 | struct pxa27x_keypad *keypad = platform_get_drvdata(pdev); | 600 | struct pxa27x_keypad *keypad = platform_get_drvdata(pdev); |
601 | struct resource *res; | 601 | struct resource *res; |
diff --git a/drivers/input/keyboard/pxa930_rotary.c b/drivers/input/keyboard/pxa930_rotary.c index 60797c22322d..bcad95be73aa 100644 --- a/drivers/input/keyboard/pxa930_rotary.c +++ b/drivers/input/keyboard/pxa930_rotary.c | |||
@@ -174,7 +174,7 @@ failed_free: | |||
174 | return err; | 174 | return err; |
175 | } | 175 | } |
176 | 176 | ||
177 | static int __devexit pxa930_rotary_remove(struct platform_device *pdev) | 177 | static int pxa930_rotary_remove(struct platform_device *pdev) |
178 | { | 178 | { |
179 | struct pxa930_rotary *r = platform_get_drvdata(pdev); | 179 | struct pxa930_rotary *r = platform_get_drvdata(pdev); |
180 | 180 | ||
diff --git a/drivers/input/keyboard/qt1070.c b/drivers/input/keyboard/qt1070.c index f9358e7d90bc..42b773b3125a 100644 --- a/drivers/input/keyboard/qt1070.c +++ b/drivers/input/keyboard/qt1070.c | |||
@@ -230,7 +230,7 @@ err_free_mem: | |||
230 | return err; | 230 | return err; |
231 | } | 231 | } |
232 | 232 | ||
233 | static int __devexit qt1070_remove(struct i2c_client *client) | 233 | static int qt1070_remove(struct i2c_client *client) |
234 | { | 234 | { |
235 | struct qt1070_data *data = i2c_get_clientdata(client); | 235 | struct qt1070_data *data = i2c_get_clientdata(client); |
236 | 236 | ||
diff --git a/drivers/input/keyboard/qt2160.c b/drivers/input/keyboard/qt2160.c index 69a6a6ffdbe3..3dc2b0f27b0c 100644 --- a/drivers/input/keyboard/qt2160.c +++ b/drivers/input/keyboard/qt2160.c | |||
@@ -335,7 +335,7 @@ err_free_mem: | |||
335 | return error; | 335 | return error; |
336 | } | 336 | } |
337 | 337 | ||
338 | static int __devexit qt2160_remove(struct i2c_client *client) | 338 | static int qt2160_remove(struct i2c_client *client) |
339 | { | 339 | { |
340 | struct qt2160_data *qt2160 = i2c_get_clientdata(client); | 340 | struct qt2160_data *qt2160 = i2c_get_clientdata(client); |
341 | 341 | ||
diff --git a/drivers/input/keyboard/samsung-keypad.c b/drivers/input/keyboard/samsung-keypad.c index 5c6a808ed62d..acc161966c3e 100644 --- a/drivers/input/keyboard/samsung-keypad.c +++ b/drivers/input/keyboard/samsung-keypad.c | |||
@@ -523,7 +523,7 @@ err_free_mem: | |||
523 | return error; | 523 | return error; |
524 | } | 524 | } |
525 | 525 | ||
526 | static int __devexit samsung_keypad_remove(struct platform_device *pdev) | 526 | static int samsung_keypad_remove(struct platform_device *pdev) |
527 | { | 527 | { |
528 | struct samsung_keypad *keypad = platform_get_drvdata(pdev); | 528 | struct samsung_keypad *keypad = platform_get_drvdata(pdev); |
529 | 529 | ||
diff --git a/drivers/input/keyboard/sh_keysc.c b/drivers/input/keyboard/sh_keysc.c index ffa9adb23f21..fdb9eb2df380 100644 --- a/drivers/input/keyboard/sh_keysc.c +++ b/drivers/input/keyboard/sh_keysc.c | |||
@@ -272,7 +272,7 @@ static int sh_keysc_probe(struct platform_device *pdev) | |||
272 | return error; | 272 | return error; |
273 | } | 273 | } |
274 | 274 | ||
275 | static int __devexit sh_keysc_remove(struct platform_device *pdev) | 275 | static int sh_keysc_remove(struct platform_device *pdev) |
276 | { | 276 | { |
277 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); | 277 | struct sh_keysc_priv *priv = platform_get_drvdata(pdev); |
278 | 278 | ||
diff --git a/drivers/input/keyboard/spear-keyboard.c b/drivers/input/keyboard/spear-keyboard.c index 3c503dae7b64..d70093bef740 100644 --- a/drivers/input/keyboard/spear-keyboard.c +++ b/drivers/input/keyboard/spear-keyboard.c | |||
@@ -279,7 +279,7 @@ static int spear_kbd_probe(struct platform_device *pdev) | |||
279 | return 0; | 279 | return 0; |
280 | } | 280 | } |
281 | 281 | ||
282 | static int __devexit spear_kbd_remove(struct platform_device *pdev) | 282 | static int spear_kbd_remove(struct platform_device *pdev) |
283 | { | 283 | { |
284 | device_init_wakeup(&pdev->dev, 0); | 284 | device_init_wakeup(&pdev->dev, 0); |
285 | platform_set_drvdata(pdev, NULL); | 285 | platform_set_drvdata(pdev, NULL); |
diff --git a/drivers/input/keyboard/stmpe-keypad.c b/drivers/input/keyboard/stmpe-keypad.c index b3f917d73cd6..7bac0524900a 100644 --- a/drivers/input/keyboard/stmpe-keypad.c +++ b/drivers/input/keyboard/stmpe-keypad.c | |||
@@ -335,7 +335,7 @@ static int stmpe_keypad_probe(struct platform_device *pdev) | |||
335 | return 0; | 335 | return 0; |
336 | } | 336 | } |
337 | 337 | ||
338 | static int __devexit stmpe_keypad_remove(struct platform_device *pdev) | 338 | static int stmpe_keypad_remove(struct platform_device *pdev) |
339 | { | 339 | { |
340 | struct stmpe_keypad *keypad = platform_get_drvdata(pdev); | 340 | struct stmpe_keypad *keypad = platform_get_drvdata(pdev); |
341 | 341 | ||
diff --git a/drivers/input/keyboard/tc3589x-keypad.c b/drivers/input/keyboard/tc3589x-keypad.c index 6d725d633aeb..2fb0d76a04c4 100644 --- a/drivers/input/keyboard/tc3589x-keypad.c +++ b/drivers/input/keyboard/tc3589x-keypad.c | |||
@@ -382,7 +382,7 @@ err_free_mem: | |||
382 | return error; | 382 | return error; |
383 | } | 383 | } |
384 | 384 | ||
385 | static int __devexit tc3589x_keypad_remove(struct platform_device *pdev) | 385 | static int tc3589x_keypad_remove(struct platform_device *pdev) |
386 | { | 386 | { |
387 | struct tc_keypad *keypad = platform_get_drvdata(pdev); | 387 | struct tc_keypad *keypad = platform_get_drvdata(pdev); |
388 | int irq = platform_get_irq(pdev, 0); | 388 | int irq = platform_get_irq(pdev, 0); |
diff --git a/drivers/input/keyboard/tca6416-keypad.c b/drivers/input/keyboard/tca6416-keypad.c index 4f44579689a4..bfc832c35a7c 100644 --- a/drivers/input/keyboard/tca6416-keypad.c +++ b/drivers/input/keyboard/tca6416-keypad.c | |||
@@ -313,7 +313,7 @@ fail1: | |||
313 | return error; | 313 | return error; |
314 | } | 314 | } |
315 | 315 | ||
316 | static int __devexit tca6416_keypad_remove(struct i2c_client *client) | 316 | static int tca6416_keypad_remove(struct i2c_client *client) |
317 | { | 317 | { |
318 | struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); | 318 | struct tca6416_keypad_chip *chip = i2c_get_clientdata(client); |
319 | 319 | ||
diff --git a/drivers/input/keyboard/tca8418_keypad.c b/drivers/input/keyboard/tca8418_keypad.c index 6f970961f244..f1e966bdcff5 100644 --- a/drivers/input/keyboard/tca8418_keypad.c +++ b/drivers/input/keyboard/tca8418_keypad.c | |||
@@ -388,7 +388,7 @@ fail1: | |||
388 | return error; | 388 | return error; |
389 | } | 389 | } |
390 | 390 | ||
391 | static int __devexit tca8418_keypad_remove(struct i2c_client *client) | 391 | static int tca8418_keypad_remove(struct i2c_client *client) |
392 | { | 392 | { |
393 | struct tca8418_keypad *keypad_data = i2c_get_clientdata(client); | 393 | struct tca8418_keypad *keypad_data = i2c_get_clientdata(client); |
394 | 394 | ||
diff --git a/drivers/input/keyboard/tegra-kbc.c b/drivers/input/keyboard/tegra-kbc.c index cf8ab689231b..c76f96872d31 100644 --- a/drivers/input/keyboard/tegra-kbc.c +++ b/drivers/input/keyboard/tegra-kbc.c | |||
@@ -838,7 +838,7 @@ err_free_pdata: | |||
838 | return err; | 838 | return err; |
839 | } | 839 | } |
840 | 840 | ||
841 | static int __devexit tegra_kbc_remove(struct platform_device *pdev) | 841 | static int tegra_kbc_remove(struct platform_device *pdev) |
842 | { | 842 | { |
843 | struct tegra_kbc *kbc = platform_get_drvdata(pdev); | 843 | struct tegra_kbc *kbc = platform_get_drvdata(pdev); |
844 | struct resource *res; | 844 | struct resource *res; |
diff --git a/drivers/input/keyboard/tnetv107x-keypad.c b/drivers/input/keyboard/tnetv107x-keypad.c index 55cd0700af8c..ee1635011292 100644 --- a/drivers/input/keyboard/tnetv107x-keypad.c +++ b/drivers/input/keyboard/tnetv107x-keypad.c | |||
@@ -301,7 +301,7 @@ error_res: | |||
301 | return error; | 301 | return error; |
302 | } | 302 | } |
303 | 303 | ||
304 | static int __devexit keypad_remove(struct platform_device *pdev) | 304 | static int keypad_remove(struct platform_device *pdev) |
305 | { | 305 | { |
306 | struct keypad_data *kp = platform_get_drvdata(pdev); | 306 | struct keypad_data *kp = platform_get_drvdata(pdev); |
307 | 307 | ||
diff --git a/drivers/input/keyboard/twl4030_keypad.c b/drivers/input/keyboard/twl4030_keypad.c index 78dd9f27dd87..04f84fd57173 100644 --- a/drivers/input/keyboard/twl4030_keypad.c +++ b/drivers/input/keyboard/twl4030_keypad.c | |||
@@ -432,7 +432,7 @@ err1: | |||
432 | return error; | 432 | return error; |
433 | } | 433 | } |
434 | 434 | ||
435 | static int __devexit twl4030_kp_remove(struct platform_device *pdev) | 435 | static int twl4030_kp_remove(struct platform_device *pdev) |
436 | { | 436 | { |
437 | struct twl4030_keypad *kp = platform_get_drvdata(pdev); | 437 | struct twl4030_keypad *kp = platform_get_drvdata(pdev); |
438 | 438 | ||
diff --git a/drivers/input/keyboard/w90p910_keypad.c b/drivers/input/keyboard/w90p910_keypad.c index 7574e10ef097..ee163bee8cce 100644 --- a/drivers/input/keyboard/w90p910_keypad.c +++ b/drivers/input/keyboard/w90p910_keypad.c | |||
@@ -234,7 +234,7 @@ failed_free: | |||
234 | return error; | 234 | return error; |
235 | } | 235 | } |
236 | 236 | ||
237 | static int __devexit w90p910_keypad_remove(struct platform_device *pdev) | 237 | static int w90p910_keypad_remove(struct platform_device *pdev) |
238 | { | 238 | { |
239 | struct w90p910_keypad *keypad = platform_get_drvdata(pdev); | 239 | struct w90p910_keypad *keypad = platform_get_drvdata(pdev); |
240 | struct resource *res; | 240 | struct resource *res; |