diff options
Diffstat (limited to 'drivers/thermal/thermal_hwmon.c')
| -rw-r--r-- | drivers/thermal/thermal_hwmon.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/thermal/thermal_hwmon.c b/drivers/thermal/thermal_hwmon.c index c41c7742903a..541af5946203 100644 --- a/drivers/thermal/thermal_hwmon.c +++ b/drivers/thermal/thermal_hwmon.c @@ -64,7 +64,7 @@ name_show(struct device *dev, struct device_attribute *attr, char *buf)  	struct thermal_hwmon_device *hwmon = dev_get_drvdata(dev);  	return sprintf(buf, "%s\n", hwmon->type);  } -static DEVICE_ATTR(name, 0444, name_show, NULL); +static DEVICE_ATTR_RO(name);  static ssize_t  temp_input_show(struct device *dev, struct device_attribute *attr, char *buf) @@ -98,7 +98,7 @@ temp_crit_show(struct device *dev, struct device_attribute *attr, char *buf)  	int temperature;  	int ret; -	ret = tz->ops->get_trip_temp(tz, 0, &temperature); +	ret = tz->ops->get_crit_temp(tz, &temperature);  	if (ret)  		return ret; |