mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-20 16:46:23 +08:00
ibm_emac: fix link speed detection change
Fix link speed detection change. Thanks to Stefan Roese <sr@denx.de> for finding this bug. CC: Stefan Roese <sr@denx.de> Signed-off-by: Eugene Surovegin <ebs@ebshome.net> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
5bb96e9f24
commit
dbf2e85859
@ -926,7 +926,7 @@ static int emac_link_differs(struct ocp_enet_private *dev)
|
||||
int duplex = r & EMAC_MR1_FDE ? DUPLEX_FULL : DUPLEX_HALF;
|
||||
int speed, pause, asym_pause;
|
||||
|
||||
if (r & (EMAC_MR1_MF_1000 | EMAC_MR1_MF_1000GPCS))
|
||||
if (r & EMAC_MR1_MF_1000)
|
||||
speed = SPEED_1000;
|
||||
else if (r & EMAC_MR1_MF_100)
|
||||
speed = SPEED_100;
|
||||
|
Loading…
Reference in New Issue
Block a user