From: Mieczyslaw Nalewaj Date: Sat, 19 Apr 2025 10:14:24 +0000 (+0200) Subject: mediatek: convert driver to .remove_new X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0adbac6c17e8c80ec5319bc7bce8d4a01ddc609d;p=thirdparty%2Fopenwrt.git mediatek: convert driver to .remove_new Convert driver to .remove_new in preparation for kernel 6.12 support. Signed-off-by: Mieczyslaw Nalewaj Link: https://github.com/openwrt/openwrt/pull/18535 Signed-off-by: Hauke Mehrtens --- diff --git a/target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c b/target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c index d958d622e0c..d70aeebad92 100644 --- a/target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c +++ b/target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c @@ -283,17 +283,15 @@ static int rtk_gsw_probe(struct platform_device *pdev) } -static int rtk_gsw_remove(struct platform_device *pdev) +static void rtk_gsw_remove(struct platform_device *pdev) { platform_set_drvdata(pdev, NULL); gsw_debug_proc_exit(); - - return 0; } static struct platform_driver gsw_driver = { .probe = rtk_gsw_probe, - .remove = rtk_gsw_remove, + .remove_new = rtk_gsw_remove, .driver = { .name = "rtk-gsw", .of_match_table = rtk_gsw_match,