From: Stefan Roese Date: Tue, 18 Oct 2005 17:17:12 +0000 (+0200) Subject: Fix NetConsole support on 4xx (only print eth link on 1st transfer) X-Git-Tag: LABEL_2006_03_12_0025~83^2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=a93316c5e9d79a1d2358d43af8d287ee28596028;p=u-boot Fix NetConsole support on 4xx (only print eth link on 1st transfer) Patch by Stefan Roese, 18 Oct 2005 --- diff --git a/CHANGELOG b/CHANGELOG index 33cd983e84..7e6cf36711 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,9 @@ Changes for U-Boot 1.1.4: ====================================================================== +* Fix NetConsole support on 4xx (only print eth link on 1st transfer) + Patch by Stefan Roese, 18 Oct 2005 + * Add fat & ext2 support to AMCC 440EP boards Yosemite & Bamboo. Fix identation on ext2ls help entry. Patch by Stefan Roese, 14 Oct 2005 diff --git a/cpu/ppc4xx/4xx_enet.c b/cpu/ppc4xx/4xx_enet.c index d3f1de4359..859b72df4f 100644 --- a/cpu/ppc4xx/4xx_enet.c +++ b/cpu/ppc4xx/4xx_enet.c @@ -186,7 +186,9 @@ static void ppc_4xx_eth_halt (struct eth_device *dev) /* EMAC RESET */ out32 (EMAC_M0 + hw_p->hw_addr, EMAC_M0_SRST); +#ifndef CONFIG_NETCONSOLE hw_p->print_speed = 1; /* print speed message again next time */ +#endif return; }