[PATCH] pr_debug: dell_rbu: fix pr_debug argument warnings
dell_rbu: fix pr_debug argument warnings Use size_t length modifier when outputting size_t and use %p instead of %lu for 'u8 *'. Signed-off-by: Zach Brown <zach.brown@oracle.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
5df0a29d9c
commit
cb7cf57a61
|
@ -227,7 +227,7 @@ static int packetize_data(void *data, size_t length)
|
||||||
int packet_length;
|
int packet_length;
|
||||||
u8 *temp;
|
u8 *temp;
|
||||||
u8 *end = (u8 *) data + length;
|
u8 *end = (u8 *) data + length;
|
||||||
pr_debug("packetize_data: data length %d\n", length);
|
pr_debug("packetize_data: data length %zd\n", length);
|
||||||
if (!rbu_data.packetsize) {
|
if (!rbu_data.packetsize) {
|
||||||
printk(KERN_WARNING
|
printk(KERN_WARNING
|
||||||
"dell_rbu: packetsize not specified\n");
|
"dell_rbu: packetsize not specified\n");
|
||||||
|
@ -249,7 +249,7 @@ static int packetize_data(void *data, size_t length)
|
||||||
if ((rc = create_packet(temp, packet_length)))
|
if ((rc = create_packet(temp, packet_length)))
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
pr_debug("%lu:%lu\n", temp, (end - temp));
|
pr_debug("%p:%lu\n", temp, (end - temp));
|
||||||
temp += packet_length;
|
temp += packet_length;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue