From: Stefan Roese Date: Mon, 10 Jan 2011 11:56:13 +0000 (+0100) Subject: ppc4xx: Fix compilation breakage in miiphy.c X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=c722c708ef8d51aecf2faf1e05a7f81d2005b3bb;p=project%2Fbcm63xx%2Fu-boot.git 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 Acked-by: Mike Frysinger --- diff --git a/arch/powerpc/cpu/ppc4xx/miiphy.c b/arch/powerpc/cpu/ppc4xx/miiphy.c index 206c476648..9f8f8fa18c 100644 --- a/arch/powerpc/cpu/ppc4xx/miiphy.c +++ b/arch/powerpc/cpu/ppc4xx/miiphy.c @@ -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;