* [PATCH 1/3] spmi: hisi-spmi-controller: Convert to platform remove callback returning void
2023-03-06 7:34 [PATCH 0/3] spmi: Convert to platform remove callback returning void Uwe Kleine-König
@ 2023-03-06 7:34 ` Uwe Kleine-König
2023-03-29 4:13 ` Stephen Boyd
2023-03-06 7:34 ` [PATCH 2/3] spmi: mtk-pmif: " Uwe Kleine-König
2023-03-06 7:34 ` [PATCH 3/3] spmi: pmic-arb: " Uwe Kleine-König
2 siblings, 1 reply; 8+ messages in thread
From: Uwe Kleine-König @ 2023-03-06 7:34 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Stephen Boyd; +Cc: linux-kernel, 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.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/spmi/hisi-spmi-controller.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/spmi/hisi-spmi-controller.c b/drivers/spmi/hisi-spmi-controller.c
index 5bd23262abd6..9cbd473487cb 100644
--- a/drivers/spmi/hisi-spmi-controller.c
+++ b/drivers/spmi/hisi-spmi-controller.c
@@ -324,13 +324,12 @@ static int spmi_controller_probe(struct platform_device *pdev)
return ret;
}
-static int spmi_del_controller(struct platform_device *pdev)
+static void spmi_del_controller(struct platform_device *pdev)
{
struct spmi_controller *ctrl = platform_get_drvdata(pdev);
spmi_controller_remove(ctrl);
spmi_controller_put(ctrl);
- return 0;
}
static const struct of_device_id spmi_controller_match_table[] = {
@@ -343,7 +342,7 @@ MODULE_DEVICE_TABLE(of, spmi_controller_match_table);
static struct platform_driver spmi_controller_driver = {
.probe = spmi_controller_probe,
- .remove = spmi_del_controller,
+ .remove_new = spmi_del_controller,
.driver = {
.name = "hisi_spmi_controller",
.of_match_table = spmi_controller_match_table,
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 1/3] spmi: hisi-spmi-controller: Convert to platform remove callback returning void
2023-03-06 7:34 ` [PATCH 1/3] spmi: hisi-spmi-controller: " Uwe Kleine-König
@ 2023-03-29 4:13 ` Stephen Boyd
0 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2023-03-29 4:13 UTC (permalink / raw)
To: Mauro Carvalho Chehab, Uwe Kleine-König; +Cc: linux-kernel, kernel
Quoting Uwe Kleine-König (2023-03-05 23:34:44)
> 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.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
Applied to spmi-next
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/3] spmi: mtk-pmif: Convert to platform remove callback returning void
2023-03-06 7:34 [PATCH 0/3] spmi: Convert to platform remove callback returning void Uwe Kleine-König
2023-03-06 7:34 ` [PATCH 1/3] spmi: hisi-spmi-controller: " Uwe Kleine-König
@ 2023-03-06 7:34 ` Uwe Kleine-König
2023-03-16 9:04 ` AngeloGioacchino Del Regno
2023-03-29 4:12 ` Stephen Boyd
2023-03-06 7:34 ` [PATCH 3/3] spmi: pmic-arb: " Uwe Kleine-König
2 siblings, 2 replies; 8+ messages in thread
From: Uwe Kleine-König @ 2023-03-06 7:34 UTC (permalink / raw)
To: Stephen Boyd, Matthias Brugger
Cc: AngeloGioacchino Del Regno, linux-kernel, linux-arm-kernel,
linux-mediatek, 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.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/spmi/spmi-mtk-pmif.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/spmi/spmi-mtk-pmif.c b/drivers/spmi/spmi-mtk-pmif.c
index ad511f2c3324..fbcb3921e70c 100644
--- a/drivers/spmi/spmi-mtk-pmif.c
+++ b/drivers/spmi/spmi-mtk-pmif.c
@@ -503,7 +503,7 @@ static int mtk_spmi_probe(struct platform_device *pdev)
return err;
}
-static int mtk_spmi_remove(struct platform_device *pdev)
+static void mtk_spmi_remove(struct platform_device *pdev)
{
struct spmi_controller *ctrl = platform_get_drvdata(pdev);
struct pmif *arb = spmi_controller_get_drvdata(ctrl);
@@ -511,7 +511,6 @@ static int mtk_spmi_remove(struct platform_device *pdev)
clk_bulk_disable_unprepare(arb->nclks, arb->clks);
spmi_controller_remove(ctrl);
spmi_controller_put(ctrl);
- return 0;
}
static const struct of_device_id mtk_spmi_match_table[] = {
@@ -533,7 +532,7 @@ static struct platform_driver mtk_spmi_driver = {
.of_match_table = of_match_ptr(mtk_spmi_match_table),
},
.probe = mtk_spmi_probe,
- .remove = mtk_spmi_remove,
+ .remove_new = mtk_spmi_remove,
};
module_platform_driver(mtk_spmi_driver);
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 2/3] spmi: mtk-pmif: Convert to platform remove callback returning void
2023-03-06 7:34 ` [PATCH 2/3] spmi: mtk-pmif: " Uwe Kleine-König
@ 2023-03-16 9:04 ` AngeloGioacchino Del Regno
2023-03-29 4:12 ` Stephen Boyd
1 sibling, 0 replies; 8+ messages in thread
From: AngeloGioacchino Del Regno @ 2023-03-16 9:04 UTC (permalink / raw)
To: Uwe Kleine-König, Stephen Boyd, Matthias Brugger
Cc: linux-kernel, linux-arm-kernel, linux-mediatek, kernel
Il 06/03/23 08:34, Uwe Kleine-König ha scritto:
> 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.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/3] spmi: mtk-pmif: Convert to platform remove callback returning void
2023-03-06 7:34 ` [PATCH 2/3] spmi: mtk-pmif: " Uwe Kleine-König
2023-03-16 9:04 ` AngeloGioacchino Del Regno
@ 2023-03-29 4:12 ` Stephen Boyd
1 sibling, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2023-03-29 4:12 UTC (permalink / raw)
To: Matthias Brugger, Uwe Kleine-König
Cc: AngeloGioacchino Del Regno, linux-kernel, linux-arm-kernel,
linux-mediatek, kernel
Quoting Uwe Kleine-König (2023-03-05 23:34:45)
> 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.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
Applied to spmi-next
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 3/3] spmi: pmic-arb: Convert to platform remove callback returning void
2023-03-06 7:34 [PATCH 0/3] spmi: Convert to platform remove callback returning void Uwe Kleine-König
2023-03-06 7:34 ` [PATCH 1/3] spmi: hisi-spmi-controller: " Uwe Kleine-König
2023-03-06 7:34 ` [PATCH 2/3] spmi: mtk-pmif: " Uwe Kleine-König
@ 2023-03-06 7:34 ` Uwe Kleine-König
2023-03-29 4:12 ` Stephen Boyd
2 siblings, 1 reply; 8+ messages in thread
From: Uwe Kleine-König @ 2023-03-06 7:34 UTC (permalink / raw)
To: Stephen Boyd; +Cc: linux-kernel, 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.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
drivers/spmi/spmi-pmic-arb.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/spmi/spmi-pmic-arb.c b/drivers/spmi/spmi-pmic-arb.c
index 8b6a42ab816f..42a593418aad 100644
--- a/drivers/spmi/spmi-pmic-arb.c
+++ b/drivers/spmi/spmi-pmic-arb.c
@@ -1674,7 +1674,7 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
return err;
}
-static int spmi_pmic_arb_remove(struct platform_device *pdev)
+static void spmi_pmic_arb_remove(struct platform_device *pdev)
{
struct spmi_controller *ctrl = platform_get_drvdata(pdev);
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
@@ -1682,7 +1682,6 @@ static int spmi_pmic_arb_remove(struct platform_device *pdev)
irq_set_chained_handler_and_data(pmic_arb->irq, NULL, NULL);
irq_domain_remove(pmic_arb->domain);
spmi_controller_put(ctrl);
- return 0;
}
static const struct of_device_id spmi_pmic_arb_match_table[] = {
@@ -1693,7 +1692,7 @@ MODULE_DEVICE_TABLE(of, spmi_pmic_arb_match_table);
static struct platform_driver spmi_pmic_arb_driver = {
.probe = spmi_pmic_arb_probe,
- .remove = spmi_pmic_arb_remove,
+ .remove_new = spmi_pmic_arb_remove,
.driver = {
.name = "spmi_pmic_arb",
.of_match_table = spmi_pmic_arb_match_table,
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* Re: [PATCH 3/3] spmi: pmic-arb: Convert to platform remove callback returning void
2023-03-06 7:34 ` [PATCH 3/3] spmi: pmic-arb: " Uwe Kleine-König
@ 2023-03-29 4:12 ` Stephen Boyd
0 siblings, 0 replies; 8+ messages in thread
From: Stephen Boyd @ 2023-03-29 4:12 UTC (permalink / raw)
To: Uwe Kleine-König; +Cc: linux-kernel, kernel
Quoting Uwe Kleine-König (2023-03-05 23:34:46)
> 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.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> ---
Applied to spmi-next
^ permalink raw reply [flat|nested] 8+ messages in thread