aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/da903x.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/da903x.c')
-rw-r--r--drivers/regulator/da903x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/da903x.c b/drivers/regulator/da903x.c
index 36c5b92fe0a..2afa5730f32 100644
--- a/drivers/regulator/da903x.c
+++ b/drivers/regulator/da903x.c
@@ -460,7 +460,7 @@ static inline struct da903x_regulator_info *find_regulator_info(int id)
460 return NULL; 460 return NULL;
461} 461}
462 462
463static int __devinit da903x_regulator_probe(struct platform_device *pdev) 463static int da903x_regulator_probe(struct platform_device *pdev)
464{ 464{
465 struct da903x_regulator_info *ri = NULL; 465 struct da903x_regulator_info *ri = NULL;
466 struct regulator_dev *rdev; 466 struct regulator_dev *rdev;
@@ -499,7 +499,7 @@ static int __devinit da903x_regulator_probe(struct platform_device *pdev)
499 return 0; 499 return 0;
500} 500}
501 501
502static int __devexit da903x_regulator_remove(struct platform_device *pdev) 502static int da903x_regulator_remove(struct platform_device *pdev)
503{ 503{
504 struct regulator_dev *rdev = platform_get_drvdata(pdev); 504 struct regulator_dev *rdev = platform_get_drvdata(pdev);
505 505
@@ -513,7 +513,7 @@ static struct platform_driver da903x_regulator_driver = {
513 .owner = THIS_MODULE, 513 .owner = THIS_MODULE,
514 }, 514 },
515 .probe = da903x_regulator_probe, 515 .probe = da903x_regulator_probe,
516 .remove = __devexit_p(da903x_regulator_remove), 516 .remove = da903x_regulator_remove,
517}; 517};
518 518
519static int __init da903x_regulator_init(void) 519static int __init da903x_regulator_init(void)