summaryrefslogtreecommitdiffstats
path: root/drivers/staging/usbip/usbip_common.c
diff options
context:
space:
mode:
authorCédric Cabessa <ced@ryick.net>2014-03-19 23:04:56 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-03-20 01:50:16 +0000
commit6bb3ee69572539d1fd89c6408e11f5476cfb23e2 (patch)
treee727e29baba429b39481c2b4ce11d252b608455c /drivers/staging/usbip/usbip_common.c
parent22ad57ba5eacf2611a086379aaa18e456bf2ffbc (diff)
downloadlinux-stable-6bb3ee69572539d1fd89c6408e11f5476cfb23e2.tar.gz
linux-stable-6bb3ee69572539d1fd89c6408e11f5476cfb23e2.tar.bz2
linux-stable-6bb3ee69572539d1fd89c6408e11f5476cfb23e2.zip
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>
Diffstat (limited to 'drivers/staging/usbip/usbip_common.c')
-rw-r--r--drivers/staging/usbip/usbip_common.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/staging/usbip/usbip_common.c b/drivers/staging/usbip/usbip_common.c
index 2a11233d44f8..184fa70365db 100644
--- a/drivers/staging/usbip/usbip_common.c
+++ b/drivers/staging/usbip/usbip_common.c
@@ -178,8 +178,8 @@ static void usbip_dump_usb_ctrlrequest(struct usb_ctrlrequest *cmd)
}
pr_debug(" ");
- pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) "
- "wLength(%04X) ", cmd->bRequestType, cmd->bRequest,
+ pr_debug("bRequestType(%02X) bRequest(%02X) wValue(%04X) wIndex(%04X) wLength(%04X) ",
+ cmd->bRequestType, cmd->bRequest,
cmd->wValue, cmd->wIndex, cmd->wLength);
pr_debug("\n ");
@@ -290,8 +290,7 @@ void usbip_dump_header(struct usbip_header *pdu)
switch (pdu->base.command) {
case USBIP_CMD_SUBMIT:
- pr_debug("USBIP_CMD_SUBMIT: "
- "x_flags %u x_len %u sf %u #p %d iv %d\n",
+ pr_debug("USBIP_CMD_SUBMIT: x_flags %u x_len %u sf %u #p %d iv %d\n",
pdu->u.cmd_submit.transfer_flags,
pdu->u.cmd_submit.transfer_buffer_length,
pdu->u.cmd_submit.start_frame,
@@ -688,8 +687,7 @@ int usbip_recv_iso(struct usbip_device *ud, struct urb *urb)
if (total_length != urb->actual_length) {
dev_err(&urb->dev->dev,
- "total length of iso packets %d not equal to actual "
- "length of buffer %d\n",
+ "total length of iso packets %d not equal to actual length of buffer %d\n",
total_length, urb->actual_length);
if (ud->side == USBIP_STUB)