Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d7005652 authored by sean.wang@mediatek.com's avatar sean.wang@mediatek.com Committed by David S. Miller
Browse files

net: ethernet: mediatek: fixed that initializing u64_stats_sync is missing



To fix runtime warning with lockdep is enabled due that u64_stats_sync
is not initialized well, so add it.

Signed-off-by: default avatarSean Wang <sean.wang@mediatek.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b4c0e0c6
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1751,6 +1751,7 @@ static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
		goto free_netdev;
	}
	spin_lock_init(&mac->hw_stats->stats_lock);
	u64_stats_init(&mac->hw_stats->syncp);
	mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET;

	SET_NETDEV_DEV(eth->netdev[id], eth->dev);