فهرست منبع

mediatek: convert driver to .remove_new

Convert driver to .remove_new in preparation for kernel 6.12 support.

Signed-off-by: Mieczyslaw Nalewaj <[email protected]>
Link: https://github.com/openwrt/openwrt/pull/18535
Signed-off-by: Hauke Mehrtens <[email protected]>
Mieczyslaw Nalewaj 8 ماه پیش
والد
کامیت
0adbac6c17
1فایلهای تغییر یافته به همراه2 افزوده شده و 4 حذف شده
  1. 2 4
      target/linux/mediatek/files/drivers/net/phy/rtk/rtl8367s_mdio.c

+ 2 - 4
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,