]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix NetConsole support on 4xx (only print eth link on 1st transfer)
authorStefan Roese <sr@denx.de>
Tue, 18 Oct 2005 17:17:12 +0000 (19:17 +0200)
committerStefan Roese <sr@denx.de>
Tue, 18 Oct 2005 17:17:12 +0000 (19:17 +0200)
Patch by Stefan Roese, 18 Oct 2005

CHANGELOG
cpu/ppc4xx/4xx_enet.c

index 33cd983e84816f6ec6475ba6cbf1308c8cc5e11c..7e6cf3671100101a736b9b73e0899b8c759e076c 100644 (file)
--- 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
index d3f1de4359ba1a1166dd043eb87b29f4e418ecd9..859b72df4fe91597614198518bee5ad1ef3b6e1b 100644 (file)
@@ -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;
 }