2016-04-26 11:43:38 +00:00
|
|
|
From d59c125296df424b8e7c5c4900e1b8084b6dd3ba Mon Sep 17 00:00:00 2001
|
2016-04-01 07:11:18 +00:00
|
|
|
From: John Crispin <blogic@openwrt.org>
|
|
|
|
Date: Wed, 30 Mar 2016 03:18:17 +0200
|
2016-04-26 11:43:38 +00:00
|
|
|
Subject: [PATCH 70/91] net: mediatek: watchdog_timeo was not set
|
2016-04-01 07:11:18 +00:00
|
|
|
|
|
|
|
The original commit failed to set watchdog_timeo. This patch sets
|
|
|
|
watchdog_timeo to HZ.
|
|
|
|
|
|
|
|
Signed-off-by: John Crispin <blogic@openwrt.org>
|
|
|
|
---
|
|
|
|
drivers/net/ethernet/mediatek/mtk_eth_soc.c | 1 +
|
|
|
|
1 file changed, 1 insertion(+)
|
|
|
|
|
2016-04-26 11:43:38 +00:00
|
|
|
diff --git a/drivers/net/ethernet/mediatek/mtk_eth_soc.c b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
|
|
|
|
index 7f2126b..7e6d2e2 100644
|
2016-04-01 07:11:18 +00:00
|
|
|
--- a/drivers/net/ethernet/mediatek/mtk_eth_soc.c
|
|
|
|
+++ b/drivers/net/ethernet/mediatek/mtk_eth_soc.c
|
2016-04-26 11:43:38 +00:00
|
|
|
@@ -1645,6 +1645,7 @@ static int mtk_add_mac(struct mtk_eth *eth, struct device_node *np)
|
2016-04-01 07:11:18 +00:00
|
|
|
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 &
|
2016-04-26 11:43:38 +00:00
|
|
|
--
|
|
|
|
1.7.10.4
|
|
|
|
|