Commit 4f4756fc authored by Luca Ellero's avatar Luca Ellero Committed by Greg Kroah-Hartman

staging: ced1401: usb1401.c: join quoted strings

Fix checkpatch warnings "quoted string split across lines" in file usb1401.c
Signed-off-by: default avatarLuca Ellero <luca.ellero@brickedbrain.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c1dee266
......@@ -627,8 +627,7 @@ static void staged_callback(struct urb *urb)
ta->blocks[1].size +=
ced->staged_length;
dev_dbg(&ced->interface->dev,
"RWM_Complete, circ block 1 "
"now %d bytes at %d\n",
"RWM_Complete, circ block 1 now %d bytes at %d\n",
ta->blocks[1].size,
ta->blocks[1].offset);
} else {
......@@ -640,8 +639,7 @@ static void staged_callback(struct urb *urb)
ta->blocks[1].size =
ced->staged_length;
dev_err(&ced->interface->dev,
"%s: ERROR, circ block 1 "
"re-started %d bytes at %d\n",
"%s: ERROR, circ block 1 re-started %d bytes at %d\n",
__func__,
ta->blocks[1].size,
ta->blocks[1].offset);
......@@ -660,9 +658,7 @@ static void staged_callback(struct urb *urb)
ta->blocks[0].size +=
ced->staged_length;
dev_dbg(&ced->interface->dev,
"RWM_Complete, circ "
"block 0 now %d bytes "
"at %d\n",
"RWM_Complete, circ block 0 now %d bytes at %d\n",
ta->blocks[0].size,
ta->blocks[0].offset);
......@@ -673,9 +669,7 @@ static void staged_callback(struct urb *urb)
ta->blocks[1].size =
ced->staged_length;
dev_dbg(&ced->interface->dev,
"RWM_Complete, circ "
"block 1 started %d "
"bytes at %d\n",
"RWM_Complete, circ block 1 started %d bytes at %d\n",
ta->blocks[1].size,
ta->blocks[1].offset);
}
......@@ -686,8 +680,7 @@ static void staged_callback(struct urb *urb)
ta->blocks[0].size =
ced->staged_length;
dev_dbg(&ced->interface->dev,
"RWM_Complete, circ block 0 "
"started %d bytes at %d\n",
"RWM_Complete, circ block 0 started %d bytes at %d\n",
ta->blocks[0].size,
ta->blocks[0].offset);
}
......@@ -696,8 +689,7 @@ static void staged_callback(struct urb *urb)
if (!cancel) { /* Don't generate an event if cancelled */
dev_dbg(&ced->interface->dev,
"RWM_Complete, bCircular %d, bToHost %d, "
"eStart %d, eSize %d\n",
"RWM_Complete, bCircular %d, bToHost %d, eStart %d, eSize %d\n",
ta->circular, ta->event_to_host,
ta->event_st, ta->event_sz);
/* Set a user-mode event... */
......@@ -752,8 +744,7 @@ static void staged_callback(struct urb *urb)
int retval;
dev_info(&ced->interface->dev,
"*** RWM_Complete *** pending transfer"
" will now be set up!!!\n");
"*** RWM_Complete *** pending transfer will now be set up!!!\n");
retval =
ced_read_write_mem(ced,
!ced->dma_info.outward,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment