diff mbox

[U-Boot] net:macb: add line break

Message ID 1345117804-17016-1-git-send-email-andreas.devel@googlemail.com
State Accepted, archived
Commit 6ed0e940713d417f24fbc67898cea6f6ece4a0e1
Delegated to: Andreas Bießmann
Headers show

Commit Message

Andreas Bießmann Aug. 16, 2012, 11:50 a.m. UTC
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 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/drivers/net/macb.c b/drivers/net/macb.c
index 4578467..ba17277 100644
--- a/drivers/net/macb.c
+++ b/drivers/net/macb.c
@@ -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;
 }