aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/hih6130.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/hwmon/hih6130.c')
-rw-r--r--drivers/hwmon/hih6130.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/hih6130.c b/drivers/hwmon/hih6130.c
index 9a675efaa78d..2dc37c7c6947 100644
--- a/drivers/hwmon/hih6130.c
+++ b/drivers/hwmon/hih6130.c
@@ -220,7 +220,7 @@ static const struct attribute_group hih6130_attr_group = {
220 * device's name. 220 * device's name.
221 * Returns 0 on success. 221 * Returns 0 on success.
222 */ 222 */
223static int __devinit hih6130_probe(struct i2c_client *client, 223static int hih6130_probe(struct i2c_client *client,
224 const struct i2c_device_id *id) 224 const struct i2c_device_id *id)
225{ 225{
226 struct hih6130 *hih6130; 226 struct hih6130 *hih6130;
@@ -263,7 +263,7 @@ fail_remove_sysfs:
263 * hih6130_remove() - remove device 263 * hih6130_remove() - remove device
264 * @client: I2C client device 264 * @client: I2C client device
265 */ 265 */
266static int __devexit hih6130_remove(struct i2c_client *client) 266static int hih6130_remove(struct i2c_client *client)
267{ 267{
268 struct hih6130 *hih6130 = i2c_get_clientdata(client); 268 struct hih6130 *hih6130 = i2c_get_clientdata(client);
269 269
@@ -283,7 +283,7 @@ MODULE_DEVICE_TABLE(i2c, hih6130_id);
283static struct i2c_driver hih6130_driver = { 283static struct i2c_driver hih6130_driver = {
284 .driver.name = "hih6130", 284 .driver.name = "hih6130",
285 .probe = hih6130_probe, 285 .probe = hih6130_probe,
286 .remove = __devexit_p(hih6130_remove), 286 .remove = hih6130_remove,
287 .id_table = hih6130_id, 287 .id_table = hih6130_id,
288}; 288};
289 289