summaryrefslogtreecommitdiffstats
path: root/drivers/hwmon
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2014-06-27 22:49:29 +0800
committerGuenter Roeck <linux@roeck-us.net>2014-08-04 07:01:34 -0700
commit233adcefee012ae9b3f3e7d16017bce9072fe62d (patch)
tree4072eda735cadd28dcf913bd6252d66b7a8c9ed0 /drivers/hwmon
parentc83959f89f1cbe2e712c11e4a77d89f4d34d09ff (diff)
downloadlinux-0-day-233adcefee012ae9b3f3e7d16017bce9072fe62d.tar.gz
linux-0-day-233adcefee012ae9b3f3e7d16017bce9072fe62d.tar.xz
hwmon: (tmp103) Add missing i2c_set_clientdata call in tmp103_probe
Add missing i2c_set_clientdata() call in tmp103_probe, this makes the dev_get_drvdata() call in tmp103_suspend/tmp103_resume return correct address. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers/hwmon')
-rw-r--r--drivers/hwmon/tmp103.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/tmp103.c b/drivers/hwmon/tmp103.c
index e69dbcacac89a..c9f99e0eb3686 100644
--- a/drivers/hwmon/tmp103.c
+++ b/drivers/hwmon/tmp103.c
@@ -151,6 +151,7 @@ static int tmp103_probe(struct i2c_client *client,
return ret;
}
+ i2c_set_clientdata(client, regmap);
hwmon_dev = hwmon_device_register_with_groups(dev, client->name,
regmap, tmp103_groups);
return PTR_ERR_OR_ZERO(hwmon_dev);