diff options
author | Bill Pemberton <wfp5p@virginia.edu> | 2012-11-19 13:22:22 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-19 20:31:26 -0500 |
commit | a5023574d120ca3b9337cedd4e27de90cae9aff7 (patch) | |
tree | 071ee48554ff7e3f2a7208aac03c892c210dbffc /drivers/regulator/wm831x-ldo.c | |
parent | 5eb9f2b96381ac3fa4a5910c37213c1cb62e9c65 (diff) |
regulator: remove use of __devinit
CONFIG_HOTPLUG is going away as an option so __devinit is no longer
needed.
Signed-off-by: Bill Pemberton <wfp5p@virginia.edu>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/wm831x-ldo.c')
-rw-r--r-- | drivers/regulator/wm831x-ldo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c index 2df06008cf51..90f657fe24ae 100644 --- a/drivers/regulator/wm831x-ldo.c +++ b/drivers/regulator/wm831x-ldo.c | |||
@@ -247,7 +247,7 @@ static struct regulator_ops wm831x_gp_ldo_ops = { | |||
247 | .disable = regulator_disable_regmap, | 247 | .disable = regulator_disable_regmap, |
248 | }; | 248 | }; |
249 | 249 | ||
250 | static __devinit int wm831x_gp_ldo_probe(struct platform_device *pdev) | 250 | static int wm831x_gp_ldo_probe(struct platform_device *pdev) |
251 | { | 251 | { |
252 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | 252 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); |
253 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | 253 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; |
@@ -504,7 +504,7 @@ static struct regulator_ops wm831x_aldo_ops = { | |||
504 | .disable = regulator_disable_regmap, | 504 | .disable = regulator_disable_regmap, |
505 | }; | 505 | }; |
506 | 506 | ||
507 | static __devinit int wm831x_aldo_probe(struct platform_device *pdev) | 507 | static int wm831x_aldo_probe(struct platform_device *pdev) |
508 | { | 508 | { |
509 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | 509 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); |
510 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | 510 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; |
@@ -660,7 +660,7 @@ static struct regulator_ops wm831x_alive_ldo_ops = { | |||
660 | .disable = regulator_disable_regmap, | 660 | .disable = regulator_disable_regmap, |
661 | }; | 661 | }; |
662 | 662 | ||
663 | static __devinit int wm831x_alive_ldo_probe(struct platform_device *pdev) | 663 | static int wm831x_alive_ldo_probe(struct platform_device *pdev) |
664 | { | 664 | { |
665 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); | 665 | struct wm831x *wm831x = dev_get_drvdata(pdev->dev.parent); |
666 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; | 666 | struct wm831x_pdata *pdata = wm831x->dev->platform_data; |