Update omap5912osk board:
Use drivers/cfi_flash.c instead of private flash driver;
Remove hardcoded personalized settings from omap5912osk.h;
Fix spacing with (RO) marks in 'flinfo' output.
Patch by Michael Bendzick, 14 Jan 2005
diff --git a/drivers/cfi_flash.c b/drivers/cfi_flash.c
index 7957dd5..2ffaf80 100644
--- a/drivers/cfi_flash.c
+++ b/drivers/cfi_flash.c
@@ -497,11 +497,11 @@
 			info->start[i],
 			erased ? " E" : "  ",
 			info->protect[i] ? "RO " : "   ");
-#else
+#else	/* ! CFG_FLASH_EMPTY_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');