summaryrefslogtreecommitdiff
path: root/drivers/input/misc/drv2603-vibrator.c
diff options
context:
space:
mode:
authorDan Willemsen <dwillemsen@nvidia.com>2013-06-16 19:31:14 -0700
committerDan Willemsen <dwillemsen@nvidia.com>2013-09-14 13:15:04 -0700
commit786d24428bc997a948dfb4ce2985167e9627da43 (patch)
tree77a744b02156dd30f099a988c5170ecd00752e5f /drivers/input/misc/drv2603-vibrator.c
parent8e0fc35e02ff801026b40387ac7f53c8d252b1fc (diff)
fixup: remove __dev*
Diffstat (limited to 'drivers/input/misc/drv2603-vibrator.c')
-rw-r--r--drivers/input/misc/drv2603-vibrator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/input/misc/drv2603-vibrator.c b/drivers/input/misc/drv2603-vibrator.c
index 852e9c62bab9..d7dfd0cdf901 100644
--- a/drivers/input/misc/drv2603-vibrator.c
+++ b/drivers/input/misc/drv2603-vibrator.c
@@ -214,7 +214,7 @@ static const struct attribute_group drv2603_vibrator_attr_group = {
.attrs = drv2603_vibrator_attr,
};
-static int __devinit drv2603_probe(struct platform_device *pdev)
+static int drv2603_probe(struct platform_device *pdev)
{
int ret;
@@ -364,7 +364,7 @@ err_regulator:
return ret;
}
-static int __devexit drv2603_remove(struct platform_device *pdev)
+static int drv2603_remove(struct platform_device *pdev)
{
struct drv2603_chip *chip = dev_get_drvdata(&pdev->dev);
@@ -402,7 +402,7 @@ static SIMPLE_DEV_PM_OPS(drv2603_pm_ops, drv2603_suspend, drv2603_resume);
static struct platform_driver drv2603_driver = {
.probe = drv2603_probe,
- .remove = __devexit_p(drv2603_remove),
+ .remove = drv2603_remove,
.driver = {
.name = "drv2603-vibrator",
.owner = THIS_MODULE,