[U-Boot] [PATCH] uli526x: drop newlines from device name

Mike Frysinger vapier at gentoo.org
Thu Jun 10 04:14:21 CEST 2010


Device names should not contain non-printable characters like newlines.

Signed-off-by: Mike Frysinger <vapier at gentoo.org>
---
 drivers/net/uli526x.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/uli526x.c b/drivers/net/uli526x.c
index 9477851..56eee7b 100644
--- a/drivers/net/uli526x.c
+++ b/drivers/net/uli526x.c
@@ -225,7 +225,7 @@ int uli526x_initialize(bd_t *bis)
 		iobase &= ~0xf;
 
 		dev = (struct eth_device *)malloc(sizeof *dev);
-		sprintf(dev->name, "uli526x#%d\n", card_number);
+		sprintf(dev->name, "uli526x#%d", card_number);
 		db = (struct uli526x_board_info *)
 			malloc(sizeof(struct uli526x_board_info));
 
-- 
1.7.1



More information about the U-Boot mailing list