1
0
Fork 0

Staging: usbip: use print_hex_dump() instead of open coding it.

Signed-off-by: Himanshu Chauhan <himanshu@symmetricore.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
hifive-unleashed-5.1
Himanshu Chauhan 2010-01-23 02:52:41 +05:30 committed by Greg Kroah-Hartman
parent 1e5065dbd6
commit aad86577b8
1 changed files with 2 additions and 27 deletions

View File

@ -63,33 +63,8 @@ DEVICE_ATTR(usbip_debug, (S_IRUGO | S_IWUSR), show_flag, store_flag);
static void usbip_dump_buffer(char *buff, int bufflen)
{
int i;
if (bufflen > 128) {
for (i = 0; i < 128; i++) {
if (i%24 == 0)
printk(KERN_DEBUG " ");
printk(KERN_DEBUG "%02x ", (unsigned char) buff[i]);
if (i%4 == 3)
printk(KERN_DEBUG "| ");
if (i%24 == 23)
printk(KERN_DEBUG "\n");
}
printk(KERN_DEBUG "... (%d byte)\n", bufflen);
return;
}
for (i = 0; i < bufflen; i++) {
if (i%24 == 0)
printk(KERN_DEBUG " ");
printk(KERN_DEBUG "%02x ", (unsigned char) buff[i]);
if (i%4 == 3)
printk(KERN_DEBUG "| ");
if (i%24 == 23)
printk(KERN_DEBUG "\n");
}
printk(KERN_DEBUG "\n");
print_hex_dump(KERN_DEBUG, "usb-ip", DUMP_PREFIX_OFFSET, 16, 4,
buff, bufflen, false);
}
static void usbip_dump_pipe(unsigned int p)