linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 01/27] thermal/drivers/amlogic: Convert to platform remove callback returning void
@ 2023-07-12  8:12 Yangtao Li
  2023-07-12  8:12 ` [PATCH 02/27] thermal/drivers/armada: " Yangtao Li
                   ` (26 more replies)
  0 siblings, 27 replies; 40+ messages in thread
From: Yangtao Li @ 2023-07-12  8:12 UTC (permalink / raw)
  To: Guillaume La Roque, Rafael J. Wysocki, Daniel Lezcano,
	Amit Kucheria, Zhang Rui
  Cc: Yangtao Li, Uwe Kleine-König, linux-pm, linux-amlogic,
	linux-kernel

The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is (mostly) ignored
and this typically results in resource leaks. To improve here there is a
quest to make the remove callback return void. In the first step of this
quest all drivers are converted to .remove_new() which already returns
void.

Trivially convert this driver from always returning zero in the remove
callback to the void returning variant.

Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Yangtao Li <frank.li@vivo.com>
---
 drivers/thermal/amlogic_thermal.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/thermal/amlogic_thermal.c b/drivers/thermal/amlogic_thermal.c
index 756b218880a7..a95c8959e5af 100644
--- a/drivers/thermal/amlogic_thermal.c
+++ b/drivers/thermal/amlogic_thermal.c
@@ -293,11 +293,11 @@ static int amlogic_thermal_probe(struct platform_device *pdev)
 	return ret;
 }
 
-static int amlogic_thermal_remove(struct platform_device *pdev)
+static void amlogic_thermal_remove(struct platform_device *pdev)
 {
 	struct amlogic_thermal *data = platform_get_drvdata(pdev);
 
-	return amlogic_thermal_disable(data);
+	amlogic_thermal_disable(data);
 }
 
 static int __maybe_unused amlogic_thermal_suspend(struct device *dev)
@@ -324,7 +324,7 @@ static struct platform_driver amlogic_thermal_driver = {
 		.of_match_table = of_amlogic_thermal_match,
 	},
 	.probe	= amlogic_thermal_probe,
-	.remove	= amlogic_thermal_remove,
+	.remove_new = amlogic_thermal_remove,
 };
 
 module_platform_driver(amlogic_thermal_driver);
-- 
2.39.0


^ permalink raw reply related	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2023-07-14 19:01 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-12  8:12 [PATCH 01/27] thermal/drivers/amlogic: Convert to platform remove callback returning void Yangtao Li
2023-07-12  8:12 ` [PATCH 02/27] thermal/drivers/armada: " Yangtao Li
2023-07-12  8:46   ` Miquel Raynal
2023-07-12 12:44   ` Uwe Kleine-König
2023-07-12  8:12 ` [PATCH 03/27] thermal/drivers/broadcom: " Yangtao Li
2023-07-12 10:06   ` Uwe Kleine-König
2023-07-12 15:38   ` Florian Fainelli
2023-07-12  8:12 ` [PATCH 04/27] drivers/thermal/rcar_gen3_thermal: " Yangtao Li
2023-07-12 10:07   ` Uwe Kleine-König
2023-07-12 11:44   ` Geert Uytterhoeven
2023-07-12 13:22   ` Niklas Söderlund
2023-07-12  8:12 ` [PATCH 05/27] thermal/drivers/imx8mm_thermal: " Yangtao Li
2023-07-12  8:12 ` [PATCH 06/27] thermal/drivers/mediatek/lvts_thermal: " Yangtao Li
2023-07-12 10:14   ` Uwe Kleine-König
2023-07-12  8:12 ` [PATCH 07/27] thermal/drivers/qcom: " Yangtao Li
2023-07-12  8:12 ` [PATCH 08/27] thermal/drivers/hisi: " Yangtao Li
2023-07-12  8:12 ` [PATCH 09/27] thermal/drivers/spear: " Yangtao Li
2023-07-12  8:12 ` [PATCH 10/27] thermal/drivers/rockchip: " Yangtao Li
2023-07-12  8:12 ` [PATCH 11/27] thermal/drivers/uniphier: " Yangtao Li
2023-07-12  8:12 ` [PATCH 12/27] thermal/drivers/dove: " Yangtao Li
2023-07-12  8:12 ` [PATCH 13/27] thermal/drivers/k3_j72xx_bandgap: " Yangtao Li
2023-07-12  8:12 ` [PATCH 14/27] thermal/drivers/tegra-bpmp: " Yangtao Li
2023-07-12  8:12 ` [PATCH 15/27] thermal/drivers/imx: " Yangtao Li
2023-07-12  8:12 ` [PATCH 16/27] thermal/drivers/da9062: " Yangtao Li
2023-07-12  8:12 ` [PATCH 17/27] thermal/drivers/broadcom: " Yangtao Li
2023-07-12  8:12 ` [PATCH 18/27] thermal/drivers/rzg2l: " Yangtao Li
2023-07-12  8:12 ` [PATCH 19/27] drivers/thermal/k3: " Yangtao Li
2023-07-12  8:12 ` [PATCH 20/27] thermal/drivers/sprd: " Yangtao Li
2023-07-12  8:12 ` [PATCH 21/27] thermal/drivers/rcar_thermal: " Yangtao Li
2023-07-12 11:43   ` Geert Uytterhoeven
2023-07-12 12:49   ` Uwe Kleine-König
2023-07-12 13:23   ` Niklas Söderlund
2023-07-12  8:12 ` [PATCH 22/27] thermal/ti-soc-thermal: " Yangtao Li
2023-07-12  8:12 ` [PATCH 23/27] thermal/drivers/stm: " Yangtao Li
2023-07-12  8:12 ` [PATCH 24/27] thermal/drivers/tegra-soctherm: " Yangtao Li
2023-07-12  8:12 ` [PATCH 25/27] thermal/drivers/exynos: " Yangtao Li
2023-07-12  8:12 ` [PATCH 26/27] thermal/drivers/kirkwood: " Yangtao Li
2023-07-12  8:12 ` [PATCH 27/27] thermal: intel: int340x: " Yangtao Li
2023-07-14 19:01   ` Rafael J. Wysocki
2023-07-12 10:05 ` [PATCH 01/27] thermal/drivers/amlogic: " Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).