summaryrefslogtreecommitdiffstats
path: root/drivers/cfi_flash.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/cfi_flash.c')
-rw-r--r--drivers/cfi_flash.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/cfi_flash.c b/drivers/cfi_flash.c
index 8a1e9f7224..773ee2bc2d 100644
--- a/drivers/cfi_flash.c
+++ b/drivers/cfi_flash.c
@@ -455,11 +455,12 @@ static void cfi_info (struct device_d* dev)
return;
}
- printf ("CFI conformant FLASH (%d x %d)",
- (info->portwidth << 3), (info->chipwidth << 3));
- printf (" Size: %ld MB in %d Sectors\n",
+ printf ("CFI conformant FLASH (%d x %d)"
+ " Size: %ld MB in %d Sectors\n"
+ " ",
+ info->portwidth << 3,info->chipwidth << 3,
info->size >> 20, info->sector_count);
- printf (" ");
+
switch (info->vendor) {
case CFI_CMDSET_INTEL_STANDARD:
printf ("Intel Standard");