diff options
| author | Linus Torvalds <[email protected]> | 2017-12-26 18:22:20 -0800 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2017-12-26 18:22:20 -0800 | 
| commit | beacbc68ac3e23821a681adb30b45dc55b17488d (patch) | |
| tree | 5ff6b2be9630cff2a24697a614d4f4ccbf805f82 /drivers/hwmon/hwmon.c | |
| parent | e2a930071d9abf6dccd5442ef499184c963f5df1 (diff) | |
| parent | 47c332deb8e89f6c59b0bb2615945c6e7fad1a60 (diff) | |
Merge tag 'hwmon-for-linus-v4.15-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging
Pull hwmon fix from Guenter Roeck:
 "Handle errors from thermal subsystem"
* tag 'hwmon-for-linus-v4.15-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging:
  hwmon: Deal with errors from the thermal subsystem
Diffstat (limited to 'drivers/hwmon/hwmon.c')
| -rw-r--r-- | drivers/hwmon/hwmon.c | 21 | 
1 files changed, 17 insertions, 4 deletions
diff --git a/drivers/hwmon/hwmon.c b/drivers/hwmon/hwmon.c index c9790e2c3440..af5123042990 100644 --- a/drivers/hwmon/hwmon.c +++ b/drivers/hwmon/hwmon.c @@ -143,6 +143,7 @@ static int hwmon_thermal_add_sensor(struct device *dev,  				    struct hwmon_device *hwdev, int index)  {  	struct hwmon_thermal_data *tdata; +	struct thermal_zone_device *tzd;  	tdata = devm_kzalloc(dev, sizeof(*tdata), GFP_KERNEL);  	if (!tdata) @@ -151,8 +152,14 @@ static int hwmon_thermal_add_sensor(struct device *dev,  	tdata->hwdev = hwdev;  	tdata->index = index; -	devm_thermal_zone_of_sensor_register(&hwdev->dev, index, tdata, -					     &hwmon_thermal_ops); +	tzd = devm_thermal_zone_of_sensor_register(&hwdev->dev, index, tdata, +						   &hwmon_thermal_ops); +	/* +	 * If CONFIG_THERMAL_OF is disabled, this returns -ENODEV, +	 * so ignore that error but forward any other error. +	 */ +	if (IS_ERR(tzd) && (PTR_ERR(tzd) != -ENODEV)) +		return PTR_ERR(tzd);  	return 0;  } @@ -621,14 +628,20 @@ __hwmon_device_register(struct device *dev, const char *name, void *drvdata,  				if (!chip->ops->is_visible(drvdata, hwmon_temp,  							   hwmon_temp_input, j))  					continue; -				if (info[i]->config[j] & HWMON_T_INPUT) -					hwmon_thermal_add_sensor(dev, hwdev, j); +				if (info[i]->config[j] & HWMON_T_INPUT) { +					err = hwmon_thermal_add_sensor(dev, +								hwdev, j); +					if (err) +						goto free_device; +				}  			}  		}  	}  	return hdev; +free_device: +	device_unregister(hdev);  free_hwmon:  	kfree(hwdev);  ida_remove:  |