From: George Amanakis Date: Thu, 13 Jun 2019 04:03:38 +0000 (-0400) Subject: mvebu: fixes commit a7e68927d0 X-Git-Tag: v21.02.0-rc1~5808 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=1e3800df1808b4a5a977c3a9651958611df51c83;p=openwrt%2Fstaging%2Fhauke.git mvebu: fixes commit a7e68927d0 err_free_stats has been deprecated. Replace with err_netdev. Compile-tested on: mvebu Runtime-tested on: mvebu Fixes: a7e68927d047 ("kernel: bump 4.14 to 4.14.125 (FS#2305 FS#2297)") Signed-off-by: George Amanakis --- diff --git a/target/linux/mvebu/patches-4.14/403-net-mvneta-convert-to-phylink.patch b/target/linux/mvebu/patches-4.14/403-net-mvneta-convert-to-phylink.patch index 577317a84d..34a2d342db 100644 --- a/target/linux/mvebu/patches-4.14/403-net-mvneta-convert-to-phylink.patch +++ b/target/linux/mvebu/patches-4.14/403-net-mvneta-convert-to-phylink.patch @@ -905,7 +905,7 @@ Signed-off-by: Russell King + phylink = phylink_create(dev, dn, phy_mode, &mvneta_phylink_ops); + if (IS_ERR(phylink)) { + err = PTR_ERR(phylink); -+ goto err_free_stats; ++ goto err_netdev; + } + + pp->phylink = phylink;