diff options
Diffstat (limited to 'drivers/hwmon/adt7411.c')
-rw-r--r-- | drivers/hwmon/adt7411.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/adt7411.c b/drivers/hwmon/adt7411.c index 517f1856c706..34ff03abb50b 100644 --- a/drivers/hwmon/adt7411.c +++ b/drivers/hwmon/adt7411.c | |||
@@ -276,7 +276,7 @@ static int adt7411_detect(struct i2c_client *client, | |||
276 | return 0; | 276 | return 0; |
277 | } | 277 | } |
278 | 278 | ||
279 | static int __devinit adt7411_probe(struct i2c_client *client, | 279 | static int adt7411_probe(struct i2c_client *client, |
280 | const struct i2c_device_id *id) | 280 | const struct i2c_device_id *id) |
281 | { | 281 | { |
282 | struct adt7411_data *data; | 282 | struct adt7411_data *data; |
@@ -317,7 +317,7 @@ static int __devinit adt7411_probe(struct i2c_client *client, | |||
317 | return ret; | 317 | return ret; |
318 | } | 318 | } |
319 | 319 | ||
320 | static int __devexit adt7411_remove(struct i2c_client *client) | 320 | static int adt7411_remove(struct i2c_client *client) |
321 | { | 321 | { |
322 | struct adt7411_data *data = i2c_get_clientdata(client); | 322 | struct adt7411_data *data = i2c_get_clientdata(client); |
323 | 323 | ||
@@ -337,7 +337,7 @@ static struct i2c_driver adt7411_driver = { | |||
337 | .name = "adt7411", | 337 | .name = "adt7411", |
338 | }, | 338 | }, |
339 | .probe = adt7411_probe, | 339 | .probe = adt7411_probe, |
340 | .remove = __devexit_p(adt7411_remove), | 340 | .remove = adt7411_remove, |
341 | .id_table = adt7411_id, | 341 | .id_table = adt7411_id, |
342 | .detect = adt7411_detect, | 342 | .detect = adt7411_detect, |
343 | .address_list = normal_i2c, | 343 | .address_list = normal_i2c, |