mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
r8169: revert bogus BMCR reset
Added during bf793295e1
The current code requests a reset but prohibits autoneg, 1000 Mb/s,
100 Mb/s and full duplex. The 8168 does not like it at all.
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
874183072d
commit
9e0db8ef4a
@ -572,8 +572,8 @@ static void rtl8169_xmii_reset_enable(void __iomem *ioaddr)
|
||||
{
|
||||
unsigned int val;
|
||||
|
||||
mdio_write(ioaddr, MII_BMCR, BMCR_RESET);
|
||||
val = mdio_read(ioaddr, MII_BMCR);
|
||||
val = mdio_read(ioaddr, MII_BMCR) | BMCR_RESET;
|
||||
mdio_write(ioaddr, MII_BMCR, val & 0xffff);
|
||||
}
|
||||
|
||||
static void rtl8169_check_link_status(struct net_device *dev,
|
||||
|
Loading…
Reference in New Issue
Block a user