diff options
author | Dan Willemsen <dwillemsen@nvidia.com> | 2013-06-16 19:31:14 -0700 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2013-09-14 13:15:04 -0700 |
commit | 786d24428bc997a948dfb4ce2985167e9627da43 (patch) | |
tree | 77a744b02156dd30f099a988c5170ecd00752e5f /drivers/power/max77660-charger-extcon.c | |
parent | 8e0fc35e02ff801026b40387ac7f53c8d252b1fc (diff) |
fixup: remove __dev*
Diffstat (limited to 'drivers/power/max77660-charger-extcon.c')
-rw-r--r-- | drivers/power/max77660-charger-extcon.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/power/max77660-charger-extcon.c b/drivers/power/max77660-charger-extcon.c index b8245cc521bf..518c56deaa6a 100644 --- a/drivers/power/max77660-charger-extcon.c +++ b/drivers/power/max77660-charger-extcon.c @@ -594,7 +594,7 @@ out: return ret; } -static int __devinit max77660_chg_extcon_probe(struct platform_device *pdev) +static int max77660_chg_extcon_probe(struct platform_device *pdev) { struct max77660_chg_extcon *chg_extcon; struct max77660_platform_data *pdata; @@ -747,7 +747,7 @@ out: return ret; } -static int __devexit max77660_chg_extcon_remove(struct platform_device *pdev) +static int max77660_chg_extcon_remove(struct platform_device *pdev) { struct max77660_chg_extcon *chg_extcon = dev_get_drvdata(&pdev->dev); @@ -817,7 +817,7 @@ static const struct dev_pm_ops max77660_pm_ops = { static struct platform_driver max77660_chg_extcon_driver = { .probe = max77660_chg_extcon_probe, - .remove = __devexit_p(max77660_chg_extcon_remove), + .remove = max77660_chg_extcon_remove, .driver = { .name = "max77660-charger-extcon", .owner = THIS_MODULE, |