From: Timur Tabi Date: Thu, 9 Apr 2009 15:27:05 +0000 (-0500) Subject: net: fix ULI 526x macro usage in netdev.h X-Git-Tag: v2009.06-rc1~34^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b11f664f52c2855990107c18f242223377183575;p=platform%2Fkernel%2Fu-boot.git net: fix ULI 526x macro usage in netdev.h Change netdev.h to use CONFIG_ULI526X instead of CONFIG_ULI526. CONFIG_ULI526X is used everywhere else, so that's the correct macro name. Without this fix, Ethernet will not work on the Freescale MPC8610 HPCD. Signed-off-by: Timur Tabi Signed-off-by: Ben Warren --- diff --git a/include/netdev.h b/include/netdev.h index 2794ddd..63cf730 100644 --- a/include/netdev.h +++ b/include/netdev.h @@ -108,7 +108,7 @@ static inline int pci_eth_init(bd_t *bis) #if defined(CONFIG_RTL8169) num += rtl8169_initialize(bis); #endif -#if defined(CONFIG_ULI526) +#if defined(CONFIG_ULI526X) num += uli526x_initialize(bis); #endif