Skip to content
Snippets Groups Projects
Commit c722c708 authored by Stefan Roese's avatar Stefan Roese
Browse files

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: default avatarStefan Roese <sr@denx.de>
Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
parent da7d3dff
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment