diff mbox

[v3,8/8] mtd: cfi_util: do not printk if no extended query table

Message ID 20100422083621.17166.14671.stgit@shiryu.yomgui.biz
State New, archived
Headers show

Commit Message

Guillaume LECERF April 22, 2010, 8:36 a.m. UTC
Signed-off-by: Guillaume LECERF <glecerf@gmail.com>
---
 drivers/mtd/chips/cfi_util.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

Comments

Wolfram Sang April 23, 2010, 1:39 a.m. UTC | #1
One thing here...

On Thu, Apr 22, 2010 at 10:36:21AM +0200, Guillaume LECERF wrote:
> Signed-off-by: Guillaume LECERF <glecerf@gmail.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..6ce5107 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(" %s Extended Query Table at 0x%4.4X\n", name, adr);
> +

Log level is missing. KERN_INFO or use pr_info?

>  	extp = kmalloc(size, GFP_KERNEL);
>  	if (!extp) {
>  		printk(KERN_ERR "Failed to allocate memory\n");
>
diff mbox

Patch

diff --git a/drivers/mtd/chips/cfi_util.c b/drivers/mtd/chips/cfi_util.c
index ca584d0..6ce5107 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(" %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");