aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/pcap-regulator.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/pcap-regulator.c')
-rw-r--r--drivers/regulator/pcap-regulator.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/pcap-regulator.c b/drivers/regulator/pcap-regulator.c
index 68777acc099f..4f3e445ec854 100644
--- a/drivers/regulator/pcap-regulator.c
+++ b/drivers/regulator/pcap-regulator.c
@@ -236,7 +236,7 @@ static const struct regulator_desc pcap_regulators[] = {
236 VREG(VAUX4), VREG(VSIM), VREG(VSIM2), VREG(VVIB), VREG(SW1), VREG(SW2), 236 VREG(VAUX4), VREG(VSIM), VREG(VSIM2), VREG(VVIB), VREG(SW1), VREG(SW2),
237}; 237};
238 238
239static int __devinit pcap_regulator_probe(struct platform_device *pdev) 239static int pcap_regulator_probe(struct platform_device *pdev)
240{ 240{
241 struct regulator_dev *rdev; 241 struct regulator_dev *rdev;
242 void *pcap = dev_get_drvdata(pdev->dev.parent); 242 void *pcap = dev_get_drvdata(pdev->dev.parent);
@@ -271,7 +271,7 @@ static struct platform_driver pcap_regulator_driver = {
271 .owner = THIS_MODULE, 271 .owner = THIS_MODULE,
272 }, 272 },
273 .probe = pcap_regulator_probe, 273 .probe = pcap_regulator_probe,
274 .remove = __devexit_p(pcap_regulator_remove), 274 .remove = pcap_regulator_remove,
275}; 275};
276 276
277static int __init pcap_regulator_init(void) 277static int __init pcap_regulator_init(void)