mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[PATCH] cciss: fix printk format warning
Fix printk format warnings: drivers/block/cciss.c:2000: warning: long long int format, long unsigned int arg (arg 2) drivers/block/cciss.c:2035: warning: long long int format, long unsigned int arg (arg 2) Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Mike Miller <mike.miller@hp.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
760fe9ad16
commit
7b92aadfda
1 changed files with 4 additions and 4 deletions
|
@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol, int withirq, sector_t *total_size,
|
|||
*block_size = BLOCK_SIZE;
|
||||
}
|
||||
if (*total_size != (__u32) 0)
|
||||
printk(KERN_INFO " blocks= %lld block_size= %d\n",
|
||||
*total_size, *block_size);
|
||||
printk(KERN_INFO " blocks= %llu block_size= %d\n",
|
||||
(unsigned long long)*total_size, *block_size);
|
||||
kfree(buf);
|
||||
return;
|
||||
}
|
||||
|
@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int logvol, int withirq, sector_t *total_size,
|
|||
*total_size = 0;
|
||||
*block_size = BLOCK_SIZE;
|
||||
}
|
||||
printk(KERN_INFO " blocks= %lld block_size= %d\n",
|
||||
*total_size, *block_size);
|
||||
printk(KERN_INFO " blocks= %llu block_size= %d\n",
|
||||
(unsigned long long)*total_size, *block_size);
|
||||
kfree(buf);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue