From c722c708ef8d51aecf2faf1e05a7f81d2005b3bb Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Mon, 10 Jan 2011 12:56:13 +0100 Subject: [PATCH] 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 --- arch/powerpc/cpu/ppc4xx/miiphy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;