Skip to content

Commit 1455b6b

Browse files
Uwe Kleine-Königkrzk
authored andcommitted
memory: stm32-fmc2-ebi: Convert to platform remove callback returning void
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 ignored (apart from emitting a warning) 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. Eventually after all drivers are converted, .remove_new() will be renamed to .remove(). 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> Link: https://lore.kernel.org/r/fa74d4ae3cbf337dcae66db8479125fec8078153.1702822744.git.u.kleine-koenig@pengutronix.de Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent 8013408 commit 1455b6b

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

drivers/memory/stm32-fmc2-ebi.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1146,16 +1146,14 @@ static int stm32_fmc2_ebi_probe(struct platform_device *pdev)
11461146
return ret;
11471147
}
11481148

1149-
static int stm32_fmc2_ebi_remove(struct platform_device *pdev)
1149+
static void stm32_fmc2_ebi_remove(struct platform_device *pdev)
11501150
{
11511151
struct stm32_fmc2_ebi *ebi = platform_get_drvdata(pdev);
11521152

11531153
of_platform_depopulate(&pdev->dev);
11541154
stm32_fmc2_ebi_disable_banks(ebi);
11551155
stm32_fmc2_ebi_disable(ebi);
11561156
clk_disable_unprepare(ebi->clk);
1157-
1158-
return 0;
11591157
}
11601158

11611159
static int __maybe_unused stm32_fmc2_ebi_suspend(struct device *dev)
@@ -1197,7 +1195,7 @@ MODULE_DEVICE_TABLE(of, stm32_fmc2_ebi_match);
11971195

11981196
static struct platform_driver stm32_fmc2_ebi_driver = {
11991197
.probe = stm32_fmc2_ebi_probe,
1200-
.remove = stm32_fmc2_ebi_remove,
1198+
.remove_new = stm32_fmc2_ebi_remove,
12011199
.driver = {
12021200
.name = "stm32_fmc2_ebi",
12031201
.of_match_table = stm32_fmc2_ebi_match,

0 commit comments

Comments
 (0)