Skip to content

Commit d19663e

Browse files
Uwe Kleine-Könighdeller
authored andcommitted
fbdev: bw2: 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 (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 <[email protected]> Signed-off-by: Helge Deller <[email protected]>
1 parent a3ce8c8 commit d19663e

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

drivers/video/fbdev/bw2.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ static int bw2_probe(struct platform_device *op)
352352
return err;
353353
}
354354

355-
static int bw2_remove(struct platform_device *op)
355+
static void bw2_remove(struct platform_device *op)
356356
{
357357
struct fb_info *info = dev_get_drvdata(&op->dev);
358358
struct bw2_par *par = info->par;
@@ -363,8 +363,6 @@ static int bw2_remove(struct platform_device *op)
363363
of_iounmap(&op->resource[0], info->screen_base, info->fix.smem_len);
364364

365365
framebuffer_release(info);
366-
367-
return 0;
368366
}
369367

370368
static const struct of_device_id bw2_match[] = {
@@ -381,7 +379,7 @@ static struct platform_driver bw2_driver = {
381379
.of_match_table = bw2_match,
382380
},
383381
.probe = bw2_probe,
384-
.remove = bw2_remove,
382+
.remove_new = bw2_remove,
385383
};
386384

387385
static int __init bw2_init(void)

0 commit comments

Comments
 (0)