projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b1436c
)
net/fec: prevent dobule restart of interface on FDX/HDX change
author
Lothar Waßmann
<
[email protected]
>
Wed, 7 Dec 2011 21:59:27 +0000
(21:59 +0000)
committer
David S. Miller
<
[email protected]
>
Fri, 9 Dec 2011 00:51:19 +0000
(19:51 -0500)
Upon detection of a FDX/HDX change the interface is restarted twice.
Signed-off-by: Lothar Waßmann <
[email protected]
>
Acked-by: Shawn Guo <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/freescale/fec.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/freescale/fec.c
b/drivers/net/ethernet/freescale/fec.c
index 65ee506f9eb79ec117c65f648d25c24814892003..7ef408fd322aebe4ef0fdebda2c0b546fd811177 100644
(file)
--- a/
drivers/net/ethernet/freescale/fec.c
+++ b/
drivers/net/ethernet/freescale/fec.c
@@
-865,6
+865,8
@@
static void fec_enet_adjust_link(struct net_device *ndev)
if (phy_dev->link) {
if (fep->full_duplex != phy_dev->duplex) {
fec_restart(ndev, phy_dev->duplex);
+ /* prevent unnecessary second fec_restart() below */
+ fep->link = phy_dev->link;
status_change = 1;
}
}