diff options
Diffstat (limited to 'drivers/input/touchscreen/da9034-ts.c')
-rw-r--r-- | drivers/input/touchscreen/da9034-ts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/touchscreen/da9034-ts.c b/drivers/input/touchscreen/da9034-ts.c index 36b65cf10d7f..34ad84105e6e 100644 --- a/drivers/input/touchscreen/da9034-ts.c +++ b/drivers/input/touchscreen/da9034-ts.c | |||
@@ -297,7 +297,7 @@ static void da9034_touch_close(struct input_dev *dev) | |||
297 | } | 297 | } |
298 | 298 | ||
299 | 299 | ||
300 | static int __devinit da9034_touch_probe(struct platform_device *pdev) | 300 | static int da9034_touch_probe(struct platform_device *pdev) |
301 | { | 301 | { |
302 | struct da9034_touch_pdata *pdata = pdev->dev.platform_data; | 302 | struct da9034_touch_pdata *pdata = pdev->dev.platform_data; |
303 | struct da9034_touch *touch; | 303 | struct da9034_touch *touch; |
@@ -361,7 +361,7 @@ err_free_touch: | |||
361 | return ret; | 361 | return ret; |
362 | } | 362 | } |
363 | 363 | ||
364 | static int __devexit da9034_touch_remove(struct platform_device *pdev) | 364 | static int da9034_touch_remove(struct platform_device *pdev) |
365 | { | 365 | { |
366 | struct da9034_touch *touch = platform_get_drvdata(pdev); | 366 | struct da9034_touch *touch = platform_get_drvdata(pdev); |
367 | 367 | ||
@@ -377,7 +377,7 @@ static struct platform_driver da9034_touch_driver = { | |||
377 | .owner = THIS_MODULE, | 377 | .owner = THIS_MODULE, |
378 | }, | 378 | }, |
379 | .probe = da9034_touch_probe, | 379 | .probe = da9034_touch_probe, |
380 | .remove = __devexit_p(da9034_touch_remove), | 380 | .remove = da9034_touch_remove, |
381 | }; | 381 | }; |
382 | module_platform_driver(da9034_touch_driver); | 382 | module_platform_driver(da9034_touch_driver); |
383 | 383 | ||