From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ben Warren Date: Sun, 19 Apr 2009 21:11:38 -0700 Subject: [U-Boot] [PATCH] net: fix ULI 526x macro usage in netdev.h In-Reply-To: <1239290825-11469-1-git-send-email-timur@freescale.com> References: <1239290825-11469-1-git-send-email-timur@freescale.com> Message-ID: <49EBF5FA.6010106@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Timur Tabi wrote: > 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 > --- > include/netdev.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > 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 > > Sorry for having fat fingers. Applying to net repo for current release. regards, Ben