diff options
author | Zhang Rui <rui.zhang@intel.com> | 2014-12-08 22:38:34 -0500 |
---|---|---|
committer | Zhang Rui <rui.zhang@intel.com> | 2014-12-08 22:38:34 -0500 |
commit | c89d99546dc5b076ccd6692c48ada9a92820a4ac (patch) | |
tree | 30788930f8c3fca80c0e5d8a377786d4a4a863bd /drivers/hwmon/tmp102.c | |
parent | 5a530ff0d88a366736ae4d1021e7358b52e55756 (diff) | |
parent | 9c1e4550b5cbe17ff68ce631356190ef9a565386 (diff) |
Merge branch 'eduardo-soc-thermal' into thermal-soc
Diffstat (limited to 'drivers/hwmon/tmp102.c')
-rw-r--r-- | drivers/hwmon/tmp102.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/hwmon/tmp102.c b/drivers/hwmon/tmp102.c index 51719956cc03..ba9f478f64ee 100644 --- a/drivers/hwmon/tmp102.c +++ b/drivers/hwmon/tmp102.c | |||
@@ -158,6 +158,10 @@ ATTRIBUTE_GROUPS(tmp102); | |||
158 | #define TMP102_CONFIG (TMP102_CONF_TM | TMP102_CONF_EM | TMP102_CONF_CR1) | 158 | #define TMP102_CONFIG (TMP102_CONF_TM | TMP102_CONF_EM | TMP102_CONF_CR1) |
159 | #define TMP102_CONFIG_RD_ONLY (TMP102_CONF_R0 | TMP102_CONF_R1 | TMP102_CONF_AL) | 159 | #define TMP102_CONFIG_RD_ONLY (TMP102_CONF_R0 | TMP102_CONF_R1 | TMP102_CONF_AL) |
160 | 160 | ||
161 | static const struct thermal_zone_of_device_ops tmp102_of_thermal_ops = { | ||
162 | .get_temp = tmp102_read_temp, | ||
163 | }; | ||
164 | |||
161 | static int tmp102_probe(struct i2c_client *client, | 165 | static int tmp102_probe(struct i2c_client *client, |
162 | const struct i2c_device_id *id) | 166 | const struct i2c_device_id *id) |
163 | { | 167 | { |
@@ -215,7 +219,7 @@ static int tmp102_probe(struct i2c_client *client, | |||
215 | } | 219 | } |
216 | tmp102->hwmon_dev = hwmon_dev; | 220 | tmp102->hwmon_dev = hwmon_dev; |
217 | tmp102->tz = thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev, | 221 | tmp102->tz = thermal_zone_of_sensor_register(hwmon_dev, 0, hwmon_dev, |
218 | tmp102_read_temp, NULL); | 222 | &tmp102_of_thermal_ops); |
219 | if (IS_ERR(tmp102->tz)) | 223 | if (IS_ERR(tmp102->tz)) |
220 | tmp102->tz = NULL; | 224 | tmp102->tz = NULL; |
221 | 225 | ||