]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
net:macb: add line break
authorAndreas Bießmann <andreas.devel@googlemail.com>
Thu, 16 Aug 2012 01:50:04 +0000 (01:50 +0000)
committerAndreas Bießmann <andreas.devel@googlemail.com>
Mon, 3 Sep 2012 21:39:11 +0000 (23:39 +0200)
Without this patch we see annoying output like this:

---8<---
U-Boot> dhcp
macb1: PHY not foundmacb0: PHY present at 1
macb0: Starting autonegotiation...
--->8---

Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
cc: Joe Hershberger <joe.hershberger@gmail.com>

drivers/net/macb.c

index 45784678ba0aaa75b27d0aeb720e11f1c8599abf..ba172775f561c23125ca7106faadc3ff291cdf23 100644 (file)
@@ -364,7 +364,7 @@ static int macb_phy_find(struct macb_device *macb)
        }
 
        /* PHY isn't up to snuff */
-       printf("%s: PHY not found", macb->netdev.name);
+       printf("%s: PHY not found\n", macb->netdev.name);
 
        return 0;
 }