diff options
author | Eduardo Valentin <edubezval@gmail.com> | 2016-03-10 00:09:43 +0300 |
---|---|---|
committer | Eduardo Valentin <edubezval@gmail.com> | 2016-05-17 17:28:27 +0300 |
commit | 5e325868aa59d3c743aa1c9526f386f30c234cd7 (patch) | |
tree | ddde8148c0b7e7b950138109ab7b5d2823c8c74b /drivers/thermal | |
parent | e936491e5c005620951fe5d67e441b936f583702 (diff) | |
download | linux-5e325868aa59d3c743aa1c9526f386f30c234cd7.tar.xz |
thermal: convert rcar_thermal to use devm_thermal_zone_of_sensor_register
This changes the driver to use the devm_ version
of thermal_zone_of_sensor_register and cleans
up the local points and unregister calls.
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal')
-rw-r--r-- | drivers/thermal/rcar_thermal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/rcar_thermal.c b/drivers/thermal/rcar_thermal.c index 82daba09e150..71a339271fa5 100644 --- a/drivers/thermal/rcar_thermal.c +++ b/drivers/thermal/rcar_thermal.c @@ -492,7 +492,7 @@ static int rcar_thermal_probe(struct platform_device *pdev) goto error_unregister; if (of_data == USE_OF_THERMAL) - priv->zone = thermal_zone_of_sensor_register( + priv->zone = devm_thermal_zone_of_sensor_register( dev, i, priv, &rcar_thermal_zone_of_ops); else |