projects
/
platform
/
kernel
/
linux-rpi3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c83959f
)
hwmon: (tmp103) Add missing i2c_set_clientdata call in tmp103_probe
author
Axel Lin
<axel.lin@ingics.com>
Fri, 27 Jun 2014 14:49:29 +0000
(22:49 +0800)
committer
Guenter Roeck
<linux@roeck-us.net>
Mon, 4 Aug 2014 14:01:34 +0000
(07:01 -0700)
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>
drivers/hwmon/tmp103.c
patch
|
blob
|
history
diff --git
a/drivers/hwmon/tmp103.c
b/drivers/hwmon/tmp103.c
index
e69dbca
..
c9f99e0
100644
(file)
--- 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);