浏览代码

net:macb: add line break

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>
Andreas Bießmann 12 年之前
父节点
当前提交
6ed0e94071
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/net/macb.c

+ 1 - 1
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;
 }