Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: usbip: fix quoted string split across lines

Signed-off-by: Cédric Cabessa <ced@ryick.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Cédric Cabessa and committed by
Greg Kroah-Hartman
6bb3ee69 22ad57ba

+14 -16
+8 -8
drivers/staging/usbip/stub_tx.c
··· 74 74 /* OK */ 75 75 break; 76 76 case -ENOENT: 77 - dev_info(&urb->dev->dev, "stopped by a call to usb_kill_urb() " 78 - "because of cleaning up a virtual connection\n"); 77 + dev_info(&urb->dev->dev, 78 + "stopped by a call to usb_kill_urb() because of cleaning up a virtual connection\n"); 79 79 return; 80 80 case -ECONNRESET: 81 - dev_info(&urb->dev->dev, "unlinked by a call to " 82 - "usb_unlink_urb()\n"); 81 + dev_info(&urb->dev->dev, 82 + "unlinked by a call to usb_unlink_urb()\n"); 83 83 break; 84 84 case -EPIPE: 85 85 dev_info(&urb->dev->dev, "endpoint %d is stalled\n", ··· 89 89 dev_info(&urb->dev->dev, "device removed?\n"); 90 90 break; 91 91 default: 92 - dev_info(&urb->dev->dev, "urb completion with non-zero status " 93 - "%d\n", urb->status); 92 + dev_info(&urb->dev->dev, 93 + "urb completion with non-zero status %d\n", 94 + urb->status); 94 95 break; 95 96 } 96 97 ··· 229 228 230 229 if (txsize != sizeof(pdu_header) + urb->actual_length) { 231 230 dev_err(&sdev->interface->dev, 232 - "actual length of urb %d does not " 233 - "match iso packet sizes %zu\n", 231 + "actual length of urb %d does not match iso packet sizes %zu\n", 234 232 urb->actual_length, 235 233 txsize-sizeof(pdu_header)); 236 234 kfree(iov);
+4 -6
drivers/staging/usbip/usbip_common.c
··· 178 178 } 179 179 180 180 pr_debug(" "); 181 - pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) " 182 - "wLength(%04X) ", cmd->bRequestType, cmd->bRequest, 181 + pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) wLength(%04X) ", 182 + cmd->bRequestType, cmd->bRequest, 183 183 cmd->wValue, cmd->wIndex, cmd->wLength); 184 184 pr_debug("\n "); 185 185 ··· 290 290 291 291 switch (pdu->base.command) { 292 292 case USBIP_CMD_SUBMIT: 293 - pr_debug("USBIP_CMD_SUBMIT: " 294 - "x_flags %u x_len %u sf %u #p %d iv %d\n", 293 + pr_debug("USBIP_CMD_SUBMIT: x_flags %u x_len %u sf %u #p %d iv %d\n", 295 294 pdu->u.cmd_submit.transfer_flags, 296 295 pdu->u.cmd_submit.transfer_buffer_length, 297 296 pdu->u.cmd_submit.start_frame, ··· 687 688 688 689 if (total_length != urb->actual_length) { 689 690 dev_err(&urb->dev->dev, 690 - "total length of iso packets %d not equal to actual " 691 - "length of buffer %d\n", 691 + "total length of iso packets %d not equal to actual length of buffer %d\n", 692 692 total_length, urb->actual_length); 693 693 694 694 if (ud->side == USBIP_STUB)
+2 -2
drivers/staging/usbip/vhci_sysfs.c
··· 47 47 * up /proc/net/{tcp,tcp6}. Also, a userland program may remember a 48 48 * port number and its peer IP address. 49 49 */ 50 - out += sprintf(out, "prt sta spd bus dev socket " 51 - "local_busid\n"); 50 + out += sprintf(out, 51 + "prt sta spd bus dev socket local_busid\n"); 52 52 53 53 for (i = 0; i < VHCI_NPORTS; i++) { 54 54 struct vhci_device *vdev = port_to_vdev(i);