
18 Oct
2004
18 Oct
'04
9:06 a.m.
CHANGELOG:
Fix typo and warning in board/versatile/flash.c
--
Steven
Index: u-boot.work/board/versatile/flash.c
===================================================================
RCS file: /cvsroot/u-boot/u-boot/board/versatile/flash.c,v
retrieving revision 1.2
diff -u -r1.2 flash.c
--- u-boot.work/board/versatile/flash.c 11 Oct 2004 22:51:13 -0000 1.2
+++ u-boot.work/board/versatile/flash.c 16 Oct 2004 19:29:39 -0000
@@ -239,7 +239,7 @@
info->flash_id += FLASH_28F256K3;
info->sector_count = 256;
info->size = 0x02000000;
- printf ("\Intel StrataFlash 28F256K3C device initialized\n");
+ printf ("Intel StrataFlash 28F256K3C device initialized\n");
break;
default:
@@ -477,7 +477,7 @@
/* Check if Flash is (sufficiently) erased */
if ((*addr & data) != data) {
- printf ("not erased at %08lx (%x)\n", (ulong) addr, *addr);
+ printf ("not erased at %08lx (%lx)\n", (ulong) addr, *addr);
return (2);
}