···7474 /* OK */7575 break;7676 case -ENOENT:7777- dev_info(&urb->dev->dev, "stopped by a call to usb_kill_urb() "7878- "because of cleaning up a virtual connection\n");7777+ dev_info(&urb->dev->dev,7878+ "stopped by a call to usb_kill_urb() because of cleaning up a virtual connection\n");7979 return;8080 case -ECONNRESET:8181- dev_info(&urb->dev->dev, "unlinked by a call to "8282- "usb_unlink_urb()\n");8181+ dev_info(&urb->dev->dev,8282+ "unlinked by a call to usb_unlink_urb()\n");8383 break;8484 case -EPIPE:8585 dev_info(&urb->dev->dev, "endpoint %d is stalled\n",···8989 dev_info(&urb->dev->dev, "device removed?\n");9090 break;9191 default:9292- dev_info(&urb->dev->dev, "urb completion with non-zero status "9393- "%d\n", urb->status);9292+ dev_info(&urb->dev->dev,9393+ "urb completion with non-zero status %d\n",9494+ urb->status);9495 break;9596 }9697···229228230229 if (txsize != sizeof(pdu_header) + urb->actual_length) {231230 dev_err(&sdev->interface->dev,232232- "actual length of urb %d does not "233233- "match iso packet sizes %zu\n",231231+ "actual length of urb %d does not match iso packet sizes %zu\n",234232 urb->actual_length,235233 txsize-sizeof(pdu_header));236234 kfree(iov);
+4-6
drivers/staging/usbip/usbip_common.c
···178178 }179179180180 pr_debug(" ");181181- pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) "182182- "wLength(%04X) ", cmd->bRequestType, cmd->bRequest,181181+ pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) wLength(%04X) ",182182+ cmd->bRequestType, cmd->bRequest,183183 cmd->wValue, cmd->wIndex, cmd->wLength);184184 pr_debug("\n ");185185···290290291291 switch (pdu->base.command) {292292 case USBIP_CMD_SUBMIT:293293- pr_debug("USBIP_CMD_SUBMIT: "294294- "x_flags %u x_len %u sf %u #p %d iv %d\n",293293+ pr_debug("USBIP_CMD_SUBMIT: x_flags %u x_len %u sf %u #p %d iv %d\n",295294 pdu->u.cmd_submit.transfer_flags,296295 pdu->u.cmd_submit.transfer_buffer_length,297296 pdu->u.cmd_submit.start_frame,···687688688689 if (total_length != urb->actual_length) {689690 dev_err(&urb->dev->dev,690690- "total length of iso packets %d not equal to actual "691691- "length of buffer %d\n",691691+ "total length of iso packets %d not equal to actual length of buffer %d\n",692692 total_length, urb->actual_length);693693694694 if (ud->side == USBIP_STUB)
+2-2
drivers/staging/usbip/vhci_sysfs.c
···4747 * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a4848 * port number and its peer IP address.4949 */5050- out += sprintf(out, "prt sta spd bus dev socket "5151- "local_busid\n");5050+ out += sprintf(out,5151+ "prt sta spd bus dev socket local_busid\n");52525353 for (i = 0; i < VHCI_NPORTS; i++) {5454 struct vhci_device *vdev = port_to_vdev(i);