diff options
Diffstat (limited to 'drivers/input/misc/twl6040-vibra.c')
-rw-r--r-- | drivers/input/misc/twl6040-vibra.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/twl6040-vibra.c b/drivers/input/misc/twl6040-vibra.c index c8a288ae1d5b..71a28ee699f3 100644 --- a/drivers/input/misc/twl6040-vibra.c +++ b/drivers/input/misc/twl6040-vibra.c | |||
@@ -255,7 +255,7 @@ static int twl6040_vibra_suspend(struct device *dev) | |||
255 | 255 | ||
256 | static SIMPLE_DEV_PM_OPS(twl6040_vibra_pm_ops, twl6040_vibra_suspend, NULL); | 256 | static SIMPLE_DEV_PM_OPS(twl6040_vibra_pm_ops, twl6040_vibra_suspend, NULL); |
257 | 257 | ||
258 | static int __devinit twl6040_vibra_probe(struct platform_device *pdev) | 258 | static int twl6040_vibra_probe(struct platform_device *pdev) |
259 | { | 259 | { |
260 | struct twl6040_vibra_data *pdata = pdev->dev.platform_data; | 260 | struct twl6040_vibra_data *pdata = pdev->dev.platform_data; |
261 | struct device *twl6040_core_dev = pdev->dev.parent; | 261 | struct device *twl6040_core_dev = pdev->dev.parent; |
@@ -418,7 +418,7 @@ err_kzalloc: | |||
418 | return ret; | 418 | return ret; |
419 | } | 419 | } |
420 | 420 | ||
421 | static int __devexit twl6040_vibra_remove(struct platform_device *pdev) | 421 | static int twl6040_vibra_remove(struct platform_device *pdev) |
422 | { | 422 | { |
423 | struct vibra_info *info = platform_get_drvdata(pdev); | 423 | struct vibra_info *info = platform_get_drvdata(pdev); |
424 | 424 | ||
@@ -433,7 +433,7 @@ static int __devexit twl6040_vibra_remove(struct platform_device *pdev) | |||
433 | 433 | ||
434 | static struct platform_driver twl6040_vibra_driver = { | 434 | static struct platform_driver twl6040_vibra_driver = { |
435 | .probe = twl6040_vibra_probe, | 435 | .probe = twl6040_vibra_probe, |
436 | .remove = __devexit_p(twl6040_vibra_remove), | 436 | .remove = twl6040_vibra_remove, |
437 | .driver = { | 437 | .driver = { |
438 | .name = "twl6040-vibra", | 438 | .name = "twl6040-vibra", |
439 | .owner = THIS_MODULE, | 439 | .owner = THIS_MODULE, |