diff options
author | John Crispin <blogic@openwrt.org> | 2016-04-08 00:54:04 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-04-12 22:41:32 -0400 |
commit | 82500aa01ad12eff41a9a68ad01f1d40db8921f9 (patch) | |
tree | 7281361b591d4b57eab07d2f0954a9add829f63f /drivers | |
parent | da0caadf0a05945bf2ef017d43e4eae1e2859b92 (diff) | |
download | linux-82500aa01ad12eff41a9a68ad01f1d40db8921f9.tar.bz2 |
net: mediatek: watchdog_timeo was not set
The original commit failed to set watchdog_timeo. This patch sets
watchdog_timeo to HZ.
Signed-off-by: John Crispin <blogic@openwrt.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/ethernet/mediatek/mtk_eth_soc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c index e0b68afea56e..bb10d57c9999 100644 --- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c +++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c @@ -1645,6 +1645,7 @@ static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np) mac->hw_stats->reg_offset = id * MTK_STAT_OFFSET; SET_NETDEV_DEV(eth->netdev[id], eth->dev); + eth->netdev[id]->watchdog_timeo = HZ; eth->netdev[id]->netdev_ops = &mtk_netdev_ops; eth->netdev[id]->base_addr = (unsigned long)eth->base; eth->netdev[id]->vlan_features = MTK_HW_FEATURES & |