[U-Boot] [PATCH] DM9000: fix build when debugging is enabled

Mike Frysinger vapier at gentoo.org
Wed Mar 24 23:21:19 CET 2010


From: Brent Kandetzki <BrentK at teleco.com>

The debug code uses the gcc __func__ define, but tries to use it as a
static const string which no longer works.  So treat it like a normal
printf string argument.

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

diff --git a/drivers/net/dm9000x.c b/drivers/net/dm9000x.c
index 73dd335..a7fef56 100644
--- a/drivers/net/dm9000x.c
+++ b/drivers/net/dm9000x.c
@@ -75,7 +75,7 @@ TODO: external MII is not functional, only internal at the moment.
 #define DM9000_DMP_PACKET(func,packet,length)  \
 	do { \
 		int i; 							\
-		printf(func ": length: %d\n", length);			\
+		printf("%s: length: %d\n", func, length);		\
 		for (i = 0; i < length; i++) {				\
 			if (i % 8 == 0)					\
 				printf("\n%s: %02x: ", func, i);	\
-- 
1.7.0.2



More information about the U-Boot mailing list