Skip to content

Commit ce42b93

Browse files
Uwe Kleine-KönigJassiBrar
authored andcommitted
mailbox: qcom-apcs-ipc: 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> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
1 parent 6778592 commit ce42b93

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/mailbox/qcom-apcs-ipc-mailbox.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,12 @@ static int qcom_apcs_ipc_probe(struct platform_device *pdev)
129129
return 0;
130130
}
131131

132-
static int qcom_apcs_ipc_remove(struct platform_device *pdev)
132+
static void qcom_apcs_ipc_remove(struct platform_device *pdev)
133133
{
134134
struct qcom_apcs_ipc *apcs = platform_get_drvdata(pdev);
135135
struct platform_device *clk = apcs->clk;
136136

137137
platform_device_unregister(clk);
138-
139-
return 0;
140138
}
141139

142140
/* .data is the offset of the ipc register within the global block */
@@ -169,7 +167,7 @@ MODULE_DEVICE_TABLE(of, qcom_apcs_ipc_of_match);
169167

170168
static struct platform_driver qcom_apcs_ipc_driver = {
171169
.probe = qcom_apcs_ipc_probe,
172-
.remove = qcom_apcs_ipc_remove,
170+
.remove_new = qcom_apcs_ipc_remove,
173171
.driver = {
174172
.name = "qcom_apcs_ipc",
175173
.of_match_table = qcom_apcs_ipc_of_match,

0 commit comments

Comments
 (0)