diff options
Diffstat (limited to 'drivers/power/rx51_battery.c')
-rw-r--r-- | drivers/power/rx51_battery.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/power/rx51_battery.c b/drivers/power/rx51_battery.c index ca49d6c0ee9d..8208888b844e 100644 --- a/drivers/power/rx51_battery.c +++ b/drivers/power/rx51_battery.c | |||
@@ -197,7 +197,7 @@ static enum power_supply_property rx51_battery_props[] = { | |||
197 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, | 197 | POWER_SUPPLY_PROP_CHARGE_FULL_DESIGN, |
198 | }; | 198 | }; |
199 | 199 | ||
200 | static int __devinit rx51_battery_probe(struct platform_device *pdev) | 200 | static int rx51_battery_probe(struct platform_device *pdev) |
201 | { | 201 | { |
202 | struct rx51_device_info *di; | 202 | struct rx51_device_info *di; |
203 | int ret; | 203 | int ret; |
@@ -224,7 +224,7 @@ static int __devinit rx51_battery_probe(struct platform_device *pdev) | |||
224 | return 0; | 224 | return 0; |
225 | } | 225 | } |
226 | 226 | ||
227 | static int __devexit rx51_battery_remove(struct platform_device *pdev) | 227 | static int rx51_battery_remove(struct platform_device *pdev) |
228 | { | 228 | { |
229 | struct rx51_device_info *di = platform_get_drvdata(pdev); | 229 | struct rx51_device_info *di = platform_get_drvdata(pdev); |
230 | 230 | ||
@@ -237,7 +237,7 @@ static int __devexit rx51_battery_remove(struct platform_device *pdev) | |||
237 | 237 | ||
238 | static struct platform_driver rx51_battery_driver = { | 238 | static struct platform_driver rx51_battery_driver = { |
239 | .probe = rx51_battery_probe, | 239 | .probe = rx51_battery_probe, |
240 | .remove = __devexit_p(rx51_battery_remove), | 240 | .remove = rx51_battery_remove, |
241 | .driver = { | 241 | .driver = { |
242 | .name = "rx51-battery", | 242 | .name = "rx51-battery", |
243 | .owner = THIS_MODULE, | 243 | .owner = THIS_MODULE, |