mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-19 05:31:32 +00:00
ppc4xx: Fix compilation breakage in miiphy.c
Patch 8ef583a0
[miiphy: convert to linux/mii.h] introduced a small
problem in the ppc4xx miiphy.c version. This patch fixes this problem.
Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
da7d3dffac
commit
c722c708ef
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ int phy_setup_aneg (char *devname, unsigned char addr)
|
|||
u16 anar = 0x0000;
|
||||
|
||||
if (exsr & ESTATUS_1000XF)
|
||||
anar |= ADVERTISE_1000XFULL);
|
||||
anar |= ADVERTISE_1000XFULL;
|
||||
|
||||
if (exsr & ESTATUS_1000XH)
|
||||
anar |= ADVERTISE_1000XHALF;
|
||||
|
|
Loading…
Add table
Reference in a new issue