ipmi: kcs_bmc_aspeed: 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>
Message-Id: <d125e83788ddc27fc52a3f11b2c329b40cbdd6f9.1709655755.git.u.kleine-koenig@pengutronix.de>
Reviewed-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Signed-off-by: Corey Minyard <minyard@acm.org>

authored by Uwe Kleine-König and committed by Corey Minyard c61090f4 a69da502

+2 -4
+2 -4
drivers/char/ipmi/kcs_bmc_aspeed.c
··· 641 641 return 0; 642 642 } 643 643 644 - static int aspeed_kcs_remove(struct platform_device *pdev) 644 + static void aspeed_kcs_remove(struct platform_device *pdev) 645 645 { 646 646 struct aspeed_kcs_bmc *priv = platform_get_drvdata(pdev); 647 647 struct kcs_bmc_device *kcs_bmc = &priv->kcs_bmc; ··· 656 656 priv->obe.remove = true; 657 657 spin_unlock_irq(&priv->obe.lock); 658 658 del_timer_sync(&priv->obe.timer); 659 - 660 - return 0; 661 659 } 662 660 663 661 static const struct of_device_id ast_kcs_bmc_match[] = { ··· 672 674 .of_match_table = ast_kcs_bmc_match, 673 675 }, 674 676 .probe = aspeed_kcs_probe, 675 - .remove = aspeed_kcs_remove, 677 + .remove_new = aspeed_kcs_remove, 676 678 }; 677 679 module_platform_driver(ast_kcs_bmc_driver); 678 680