提交 7b92aadf 编写于 作者: R Randy Dunlap 提交者: Linus Torvalds

[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: NRandy Dunlap <randy.dunlap@oracle.com>
Acked-by: NMike Miller <mike.miller@hp.com>
Signed-off-by: NAndrew Morton <akpm@osdl.org>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 760fe9ad
...@@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol, int withirq, sector_t *total_size, ...@@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol, int withirq, sector_t *total_size,
*block_size = BLOCK_SIZE; *block_size = BLOCK_SIZE;
} }
if (*total_size != (__u32) 0) if (*total_size != (__u32) 0)
printk(KERN_INFO " blocks= %lld block_size= %d\n", printk(KERN_INFO " blocks= %llu block_size= %d\n",
*total_size, *block_size); (unsigned long long)*total_size, *block_size);
kfree(buf); kfree(buf);
return; return;
} }
...@@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int logvol, int withirq, sector_t *total_size, ...@@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int logvol, int withirq, sector_t *total_size,
*total_size = 0; *total_size = 0;
*block_size = BLOCK_SIZE; *block_size = BLOCK_SIZE;
} }
printk(KERN_INFO " blocks= %lld block_size= %d\n", printk(KERN_INFO " blocks= %llu block_size= %d\n",
*total_size, *block_size); (unsigned long long)*total_size, *block_size);
kfree(buf); kfree(buf);
return; return;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册