diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-12-08 14:06:09 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-12-08 14:06:09 +0000 |
commit | b9c2e351d580abd4a18ad632920535c691542a83 (patch) | |
tree | ea2a42c9f6a37b76513d340a64ed9ad478df15ae /target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c | |
parent | 2417cf679167fc778c0a77ff2e1f0ade2c797306 (diff) |
fix link status detection in various switch drivers
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18698 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c')
-rw-r--r-- | target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c b/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c index 3ae8899c2..c2f324572 100644 --- a/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c +++ b/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c @@ -366,7 +366,7 @@ mvswitch_read_status(struct phy_device *pdev) { pdev->speed = SPEED_100; pdev->duplex = DUPLEX_FULL; - pdev->state = PHY_UP; + pdev->link = 1; /* XXX ugly workaround: we can't force the switch * to gracefully handle hosts moving from one port to another, |