From: Guillaume LECERF Date: Tue, 29 Jun 2010 08:32:37 +0000 (+0200) Subject: mtd: cfi_probe: print manufacturer and id of probed chip X-Git-Tag: v2.6.36-rc1~301^2~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=771a115a6df06c45cf783e24c3f1f08b3e9aac4c;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git mtd: cfi_probe: print manufacturer and id of probed chip Signed-off-by: Guillaume LECERF Signed-off-by: Artem Bityutskiy Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/chips/cfi_probe.c b/drivers/mtd/chips/cfi_probe.c index b2acd32f..8f5b96a 100644 --- a/drivers/mtd/chips/cfi_probe.c +++ b/drivers/mtd/chips/cfi_probe.c @@ -235,9 +235,9 @@ static int __xipram cfi_chip_setup(struct map_info *map, cfi_qry_mode_off(base, map, cfi); xip_allowed(base, map); - printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank\n", + printk(KERN_INFO "%s: Found %d x%d devices at 0x%x in %d-bit bank. Manufacturer ID %#08x Chip ID %#08x\n", map->name, cfi->interleave, cfi->device_type*8, base, - map->bankwidth*8); + map->bankwidth*8, cfi->mfr, cfi->id); return 1; }