mtd: cfi_util: do not printk if no extended query table
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Thu May 13 21:59:02 EDT 2010
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=087444da61ed972b3c2bfbf7dcf317cb4475f143
Commit: 087444da61ed972b3c2bfbf7dcf317cb4475f143
Parent: 5a0563f0ad0c9864b735e9ae23e55f7fa9c73bf5
Author: Guillaume LECERF <glecerf at gmail.com>
AuthorDate: Sat Apr 24 17:58:32 2010 +0200
Committer: David Woodhouse <David.Woodhouse at intel.com>
CommitDate: Fri May 14 01:39:55 2010 +0100
mtd: cfi_util: do not printk if no extended query table
Signed-off-by: Guillaume LECERF <glecerf at gmail.com>
Reviewed-by: Wolfram Sang <w.sang at pengutronix.de>
Signed-off-by: David Woodhouse <David.Woodhouse at intel.com>
---
drivers/mtd/chips/cfi_util.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/drivers/mtd/chips/cfi_util.c b/drivers/mtd/chips/cfi_util.c
index ca584d0..d7c2c67 100644
--- a/drivers/mtd/chips/cfi_util.c
+++ b/drivers/mtd/chips/cfi_util.c
@@ -104,10 +104,11 @@ __xipram cfi_read_pri(struct map_info *map, __u16 adr, __u16 size, const char* n
int i;
struct cfi_extquery *extp = NULL;
- printk(" %s Extended Query Table at 0x%4.4X\n", name, adr);
if (!adr)
goto out;
+ printk(KERN_INFO "%s Extended Query Table at 0x%4.4X\n", name, adr);
+
extp = kmalloc(size, GFP_KERNEL);
if (!extp) {
printk(KERN_ERR "Failed to allocate memory\n");
More information about the linux-mtd-cvs
mailing list