aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/ad7414.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/ad7414.c')
-rw-r--r--drivers/hwmon/ad7414.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/hwmon/ad7414.c b/drivers/hwmon/ad7414.c
index b420fb3f3a71..f3a5d4764eb9 100644
--- a/drivers/hwmon/ad7414.c
+++ b/drivers/hwmon/ad7414.c
@@ -226,7 +226,7 @@ exit_remove:
226 return err; 226 return err;
227} 227}
228 228
229static int __devexit ad7414_remove(struct i2c_client *client) 229static int ad7414_remove(struct i2c_client *client)
230{ 230{
231 struct ad7414_data *data = i2c_get_clientdata(client); 231 struct ad7414_data *data = i2c_get_clientdata(client);
232 232
@@ -246,7 +246,7 @@ static struct i2c_driver ad7414_driver = {
246 .name = "ad7414", 246 .name = "ad7414",
247 }, 247 },
248 .probe = ad7414_probe, 248 .probe = ad7414_probe,
249 .remove = __devexit_p(ad7414_remove), 249 .remove = ad7414_remove,
250 .id_table = ad7414_id, 250 .id_table = ad7414_id,
251}; 251};
252 252