]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Patch by Michael Bendzick, 12 Jul 2004:
authorwdenk <wdenk>
Mon, 12 Jul 2004 22:34:51 +0000 (22:34 +0000)
committerwdenk <wdenk>
Mon, 12 Jul 2004 22:34:51 +0000 (22:34 +0000)
fix output formatting in drivers/cfi_flash.c

CHANGELOG
drivers/cfi_flash.c

index 244f1392b49507030c0d4be46b6b48bc18eecb38..74b7c623facdec16ffe97b8d61ed8b6b9829598e 100644 (file)
--- 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
 
index b79cf59344c8d2935a252064f6d17042d4e471c2..e89f975ce6681dc7ac63c1fecf60a4c907ac2456 100644 (file)
@@ -462,7 +462,7 @@ void flash_print_info (flash_info_t * info)
                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');