diff options
Diffstat (limited to 'drivers/regulator/tps62360-regulator.c')
-rw-r--r-- | drivers/regulator/tps62360-regulator.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/tps62360-regulator.c b/drivers/regulator/tps62360-regulator.c index 68729a7c8709..acbd63fde415 100644 --- a/drivers/regulator/tps62360-regulator.c +++ b/drivers/regulator/tps62360-regulator.c | |||
@@ -243,7 +243,7 @@ static struct regulator_ops tps62360_dcdc_ops = { | |||
243 | .get_mode = tps62360_get_mode, | 243 | .get_mode = tps62360_get_mode, |
244 | }; | 244 | }; |
245 | 245 | ||
246 | static int __devinit tps62360_init_dcdc(struct tps62360_chip *tps, | 246 | static int tps62360_init_dcdc(struct tps62360_chip *tps, |
247 | struct tps62360_regulator_platform_data *pdata) | 247 | struct tps62360_regulator_platform_data *pdata) |
248 | { | 248 | { |
249 | int ret; | 249 | int ret; |
@@ -339,7 +339,7 @@ static const struct of_device_id tps62360_of_match[] = { | |||
339 | MODULE_DEVICE_TABLE(of, tps62360_of_match); | 339 | MODULE_DEVICE_TABLE(of, tps62360_of_match); |
340 | #endif | 340 | #endif |
341 | 341 | ||
342 | static int __devinit tps62360_probe(struct i2c_client *client, | 342 | static int tps62360_probe(struct i2c_client *client, |
343 | const struct i2c_device_id *id) | 343 | const struct i2c_device_id *id) |
344 | { | 344 | { |
345 | struct regulator_config config = { }; | 345 | struct regulator_config config = { }; |
@@ -490,7 +490,7 @@ static int __devinit tps62360_probe(struct i2c_client *client, | |||
490 | * | 490 | * |
491 | * Unregister TPS driver as an i2c client device driver | 491 | * Unregister TPS driver as an i2c client device driver |
492 | */ | 492 | */ |
493 | static int __devexit tps62360_remove(struct i2c_client *client) | 493 | static int tps62360_remove(struct i2c_client *client) |
494 | { | 494 | { |
495 | struct tps62360_chip *tps = i2c_get_clientdata(client); | 495 | struct tps62360_chip *tps = i2c_get_clientdata(client); |
496 | 496 | ||
@@ -531,7 +531,7 @@ static struct i2c_driver tps62360_i2c_driver = { | |||
531 | .of_match_table = of_match_ptr(tps62360_of_match), | 531 | .of_match_table = of_match_ptr(tps62360_of_match), |
532 | }, | 532 | }, |
533 | .probe = tps62360_probe, | 533 | .probe = tps62360_probe, |
534 | .remove = __devexit_p(tps62360_remove), | 534 | .remove = tps62360_remove, |
535 | .shutdown = tps62360_shutdown, | 535 | .shutdown = tps62360_shutdown, |
536 | .id_table = tps62360_id, | 536 | .id_table = tps62360_id, |
537 | }; | 537 | }; |