On Mon, Jan 22, 2024 at 09:02:19PM +0800, Chukun Pan wrote:
It seems that there was something wrong with backport, causing `if (err)` to appear twice in the same place.
Fixes: da86a63479e ("net: ethernet: mtk_eth_soc: fix error handling in mtk_open()") Signed-off-by: Chukun Pan amadeus@jmu.edu.cn
drivers/net/ethernet/mediatek/mtk_eth_soc.c | 1 - 1 file changed, 1 deletion(-)
diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c index aa9e616cc1d5..011210e6842d 100644 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -2302,7 +2302,6 @@ static int mtk_open(struct net_device *dev) if (!refcount_read(ð->dma_refcnt)) { int err = mtk_start_dma(eth);
if (err) { phylink_disconnect_phy(mac->phylink); return err;if (err)
-- 2.25.1
Now queued up, thanks. Odd that no one actually caught this, I guess the driver is NOT being built by any type of test configurations? Why is that?
thanks,
greg k-h