Skip to content

Commit b7b5808

Browse files
Uwe Kleine-KönigKAGA-KOKO
authored andcommitted
irqchip/mvebu-pic: Convert to platform_driver::remove_new() callback
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: Thomas Gleixner <tglx@linutronix.de> Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com> Link: https://lore.kernel.org/r/df977ad4c02ff913b01cdd6c348e7fae3e08e651.1703284359.git.u.kleine-koenig@pengutronix.de
1 parent 8d0f3e7 commit b7b5808

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

drivers/irqchip/irq-mvebu-pic.c

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -167,14 +167,12 @@ static int mvebu_pic_probe(struct platform_device *pdev)
167167
return 0;
168168
}
169169

170-
static int mvebu_pic_remove(struct platform_device *pdev)
170+
static void mvebu_pic_remove(struct platform_device *pdev)
171171
{
172172
struct mvebu_pic *pic = platform_get_drvdata(pdev);
173173

174174
on_each_cpu(mvebu_pic_disable_percpu_irq, pic, 1);
175175
irq_domain_remove(pic->domain);
176-
177-
return 0;
178176
}
179177

180178
static const struct of_device_id mvebu_pic_of_match[] = {
@@ -184,11 +182,11 @@ static const struct of_device_id mvebu_pic_of_match[] = {
184182
MODULE_DEVICE_TABLE(of, mvebu_pic_of_match);
185183

186184
static struct platform_driver mvebu_pic_driver = {
187-
.probe = mvebu_pic_probe,
188-
.remove = mvebu_pic_remove,
185+
.probe = mvebu_pic_probe,
186+
.remove_new = mvebu_pic_remove,
189187
.driver = {
190-
.name = "mvebu-pic",
191-
.of_match_table = mvebu_pic_of_match,
188+
.name = "mvebu-pic",
189+
.of_match_table = mvebu_pic_of_match,
192190
},
193191
};
194192
module_platform_driver(mvebu_pic_driver);

0 commit comments

Comments
 (0)