Commit adad7c7d authored by Julia Lawall's avatar Julia Lawall Committed by Eduardo Valentin

thermal: broadcom: use devm_thermal_zone_of_sensor_register

Using devm_thermal_zone_of_sensor_register allows to simplify some
error handling code, drop a label, and drop the remove function.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Reviewed-by: default avatarDaniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: default avatarEduardo Valentin <edubezval@gmail.com>
parent d56c19d0
...@@ -329,7 +329,8 @@ static int brcmstb_thermal_probe(struct platform_device *pdev) ...@@ -329,7 +329,8 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
priv->dev = &pdev->dev; priv->dev = &pdev->dev;
platform_set_drvdata(pdev, priv); platform_set_drvdata(pdev, priv);
thermal = thermal_zone_of_sensor_register(&pdev->dev, 0, priv, &of_ops); thermal = devm_thermal_zone_of_sensor_register(&pdev->dev, 0, priv,
&of_ops);
if (IS_ERR(thermal)) { if (IS_ERR(thermal)) {
ret = PTR_ERR(thermal); ret = PTR_ERR(thermal);
dev_err(&pdev->dev, "could not register sensor: %d\n", ret); dev_err(&pdev->dev, "could not register sensor: %d\n", ret);
...@@ -341,40 +342,23 @@ static int brcmstb_thermal_probe(struct platform_device *pdev) ...@@ -341,40 +342,23 @@ static int brcmstb_thermal_probe(struct platform_device *pdev)
irq = platform_get_irq(pdev, 0); irq = platform_get_irq(pdev, 0);
if (irq < 0) { if (irq < 0) {
dev_err(&pdev->dev, "could not get IRQ\n"); dev_err(&pdev->dev, "could not get IRQ\n");
ret = irq; return irq;
goto err;
} }
ret = devm_request_threaded_irq(&pdev->dev, irq, NULL, ret = devm_request_threaded_irq(&pdev->dev, irq, NULL,
brcmstb_tmon_irq_thread, IRQF_ONESHOT, brcmstb_tmon_irq_thread, IRQF_ONESHOT,
DRV_NAME, priv); DRV_NAME, priv);
if (ret < 0) { if (ret < 0) {
dev_err(&pdev->dev, "could not request IRQ: %d\n", ret); dev_err(&pdev->dev, "could not request IRQ: %d\n", ret);
goto err; return ret;
} }
dev_info(&pdev->dev, "registered AVS TMON of-sensor driver\n"); dev_info(&pdev->dev, "registered AVS TMON of-sensor driver\n");
return 0; return 0;
err:
thermal_zone_of_sensor_unregister(&pdev->dev, thermal);
return ret;
}
static int brcmstb_thermal_exit(struct platform_device *pdev)
{
struct brcmstb_thermal_priv *priv = platform_get_drvdata(pdev);
struct thermal_zone_device *thermal = priv->thermal;
if (thermal)
thermal_zone_of_sensor_unregister(&pdev->dev, priv->thermal);
return 0;
} }
static struct platform_driver brcmstb_thermal_driver = { static struct platform_driver brcmstb_thermal_driver = {
.probe = brcmstb_thermal_probe, .probe = brcmstb_thermal_probe,
.remove = brcmstb_thermal_exit,
.driver = { .driver = {
.name = DRV_NAME, .name = DRV_NAME,
.of_match_table = brcmstb_thermal_id_table, .of_match_table = brcmstb_thermal_id_table,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment