Patch by Michael Bendzick, 12 Jul 2004:
fix output formatting in drivers/cfi_flash.c
diff --git a/CHANGELOG b/CHANGELOG
index 244f139..74b7c62 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,9 @@
 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:
   Fix lowboot (again) on MPC5xxx
 
diff --git a/drivers/cfi_flash.c b/drivers/cfi_flash.c
index b79cf59..e89f975 100644
--- a/drivers/cfi_flash.c
+++ b/drivers/cfi_flash.c
@@ -462,7 +462,7 @@
 		if ((i % 5) == 0)
 			printf ("\n   ");
 		printf (" %08lX%s",
-			info->start[i], info->protect[i] ? " (RO)" : "	   ");
+			info->start[i], info->protect[i] ? " (RO)" : "     ");
 #endif
 	}
 	putc ('\n');