aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/block/cciss.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2006-10-28 13:38:40 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2006-10-28 14:30:53 -0400
commit7b92aadfdae85ef837db343be38d4172115be72b (patch)
tree75f9b6b23fb664088c9bce75d92a6473ff972f73 /drivers/block/cciss.c
parent760fe9ad1692361770bb56fa5c69cf6b3354858c (diff)
[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>
Diffstat (limited to 'drivers/block/cciss.c')
-rw-r--r--drivers/block/cciss.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/block/cciss.c b/drivers/block/cciss.c
index bc6602606fb5..6ffe2b2bdacc 100644
--- a/drivers/block/cciss.c
+++ b/drivers/block/cciss.c
@@ -1992,8 +1992,8 @@ cciss_read_capacity(int ctlr, int logvol, int withirq, sector_t *total_size,
1992 *block_size = BLOCK_SIZE; 1992 *block_size = BLOCK_SIZE;
1993 } 1993 }
1994 if (*total_size != (__u32) 0) 1994 if (*total_size != (__u32) 0)
1995 printk(KERN_INFO " blocks= %lld block_size= %d\n", 1995 printk(KERN_INFO " blocks= %llu block_size= %d\n",
1996 *total_size, *block_size); 1996 (unsigned long long)*total_size, *block_size);
1997 kfree(buf); 1997 kfree(buf);
1998 return; 1998 return;
1999} 1999}
@@ -2027,8 +2027,8 @@ cciss_read_capacity_16(int ctlr, int logvol, int withirq, sector_t *total_size,
2027 *total_size = 0; 2027 *total_size = 0;
2028 *block_size = BLOCK_SIZE; 2028 *block_size = BLOCK_SIZE;
2029 } 2029 }
2030 printk(KERN_INFO " blocks= %lld block_size= %d\n", 2030 printk(KERN_INFO " blocks= %llu block_size= %d\n",
2031 *total_size, *block_size); 2031 (unsigned long long)*total_size, *block_size);
2032 kfree(buf); 2032 kfree(buf);
2033 return; 2033 return;
2034} 2034}