aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/max8649.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator/max8649.c')
-rw-r--r--drivers/regulator/max8649.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/max8649.c b/drivers/regulator/max8649.c
index 9d540cd02dab..3ca14380f22d 100644
--- a/drivers/regulator/max8649.c
+++ b/drivers/regulator/max8649.c
@@ -176,7 +176,7 @@ static struct regmap_config max8649_regmap_config = {
176 .val_bits = 8, 176 .val_bits = 8,
177}; 177};
178 178
179static int __devinit max8649_regulator_probe(struct i2c_client *client, 179static int max8649_regulator_probe(struct i2c_client *client,
180 const struct i2c_device_id *id) 180 const struct i2c_device_id *id)
181{ 181{
182 struct max8649_platform_data *pdata = client->dev.platform_data; 182 struct max8649_platform_data *pdata = client->dev.platform_data;
@@ -271,7 +271,7 @@ static int __devinit max8649_regulator_probe(struct i2c_client *client,
271 return 0; 271 return 0;
272} 272}
273 273
274static int __devexit max8649_regulator_remove(struct i2c_client *client) 274static int max8649_regulator_remove(struct i2c_client *client)
275{ 275{
276 struct max8649_regulator_info *info = i2c_get_clientdata(client); 276 struct max8649_regulator_info *info = i2c_get_clientdata(client);
277 277
@@ -291,7 +291,7 @@ MODULE_DEVICE_TABLE(i2c, max8649_id);
291 291
292static struct i2c_driver max8649_driver = { 292static struct i2c_driver max8649_driver = {
293 .probe = max8649_regulator_probe, 293 .probe = max8649_regulator_probe,
294 .remove = __devexit_p(max8649_regulator_remove), 294 .remove = max8649_regulator_remove,
295 .driver = { 295 .driver = {
296 .name = "max8649", 296 .name = "max8649",
297 }, 297 },