Просмотр исходного кода

cmd_mem: replace custom PRINTF() with debug()

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger 13 лет назад
Родитель
Сommit
9504a5518c
1 измененных файлов с 3 добавлено и 9 удалено
  1. 3 9
      common/cmd_mem.c

+ 3 - 9
common/cmd_mem.c

@@ -34,12 +34,6 @@
 #endif
 #endif
 #include <watchdog.h>
 #include <watchdog.h>
 
 
-#ifdef	CMD_MEM_DEBUG
-#define	PRINTF(fmt,args...)	printf (fmt ,##args)
-#else
-#define PRINTF(fmt,args...)
-#endif
-
 static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
 static int mod_mem(cmd_tbl_t *, int, int, int, char * const []);
 
 
 /* Display values from last command.
 /* Display values from last command.
@@ -676,7 +670,7 @@ int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 
 
 #if defined(CONFIG_SYS_ALT_MEMTEST)
 #if defined(CONFIG_SYS_ALT_MEMTEST)
 	printf ("Testing %08x ... %08x:\n", (uint)start, (uint)end);
 	printf ("Testing %08x ... %08x:\n", (uint)start, (uint)end);
-	PRINTF("%s:%d: start 0x%p end 0x%p\n",
+	debug("%s:%d: start 0x%p end 0x%p\n",
 		__FUNCTION__, __LINE__, start, end);
 		__FUNCTION__, __LINE__, start, end);
 
 
 	for (;;) {
 	for (;;) {
@@ -693,7 +687,7 @@ int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 		}
 		}
 
 
 		printf("Iteration: %6d\r", iterations);
 		printf("Iteration: %6d\r", iterations);
-		PRINTF("\n");
+		debug("\n");
 		iterations++;
 		iterations++;
 
 
 		/*
 		/*
@@ -784,7 +778,7 @@ int do_mem_mtest (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
 		pattern = (vu_long) 0xaaaaaaaa;
 		pattern = (vu_long) 0xaaaaaaaa;
 		anti_pattern = (vu_long) 0x55555555;
 		anti_pattern = (vu_long) 0x55555555;
 
 
-		PRINTF("%s:%d: length = 0x%.8lx\n",
+		debug("%s:%d: length = 0x%.8lx\n",
 			__FUNCTION__, __LINE__,
 			__FUNCTION__, __LINE__,
 			len);
 			len);
 		/*
 		/*