Ver Fonte

Patch by Michael Bendzick, 12 Jul 2004:
fix output formatting in drivers/cfi_flash.c

wdenk há 21 anos atrás
pai
commit
75b1fa7864
2 ficheiros alterados com 4 adições e 1 exclusões
  1. 3 0
      CHANGELOG
  2. 1 1
      drivers/cfi_flash.c

+ 3 - 0
CHANGELOG

@@ -2,6 +2,9 @@
 Changes since U-Boot 1.1.1:
 Changes since U-Boot 1.1.1:
 ======================================================================
 ======================================================================
 
 
+* Patch by Michael Bendzick, 12 Jul 2004:
+  fix output formatting in drivers/cfi_flash.c
+
 * Patch by Mark Jonas, 02 Jul 2004:
 * Patch by Mark Jonas, 02 Jul 2004:
   Fix lowboot (again) on MPC5xxx
   Fix lowboot (again) on MPC5xxx
 
 

+ 1 - 1
drivers/cfi_flash.c

@@ -462,7 +462,7 @@ void flash_print_info (flash_info_t * info)
 		if ((i % 5) == 0)
 		if ((i % 5) == 0)
 			printf ("\n   ");
 			printf ("\n   ");
 		printf (" %08lX%s",
 		printf (" %08lX%s",
-			info->start[i], info->protect[i] ? " (RO)" : "	   ");
+			info->start[i], info->protect[i] ? " (RO)" : "     ");
 #endif
 #endif
 	}
 	}
 	putc ('\n');
 	putc ('\n');