Skip to content

Commit 0b478d7

Browse files
Uwe Kleine-Königrafaeljw
authored andcommitted
thermal: exynos_tmu: 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 <[email protected]> Acked-by: Daniel Lezcano <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent 24bbbfb commit 0b478d7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/thermal/samsung/exynos_tmu.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,7 @@ static int exynos_tmu_probe(struct platform_device *pdev)
11241124
return ret;
11251125
}
11261126

1127-
static int exynos_tmu_remove(struct platform_device *pdev)
1127+
static void exynos_tmu_remove(struct platform_device *pdev)
11281128
{
11291129
struct exynos_tmu_data *data = platform_get_drvdata(pdev);
11301130

@@ -1137,8 +1137,6 @@ static int exynos_tmu_remove(struct platform_device *pdev)
11371137

11381138
if (!IS_ERR(data->regulator))
11391139
regulator_disable(data->regulator);
1140-
1141-
return 0;
11421140
}
11431141

11441142
#ifdef CONFIG_PM_SLEEP
@@ -1173,7 +1171,7 @@ static struct platform_driver exynos_tmu_driver = {
11731171
.of_match_table = exynos_tmu_match,
11741172
},
11751173
.probe = exynos_tmu_probe,
1176-
.remove = exynos_tmu_remove,
1174+
.remove_new = exynos_tmu_remove,
11771175
};
11781176

11791177
module_platform_driver(exynos_tmu_driver);

0 commit comments

Comments
 (0)