Skip to content

Commit b77f276

Browse files
ebruAkagunduzgregkh
authored andcommitted
Staging:nvec: fix quoted string split across lines
Fix checkpatch.pl issues with quoted string split across lines in nvec.c Signed-off-by: Ebru Akagunduz <[email protected]> Acked-by: Paul E. McKenney <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 9df2b0d commit b77f276

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

drivers/staging/nvec/nvec.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,8 +678,7 @@ static irqreturn_t nvec_interrupt(int irq, void *dev)
678678
nvec->rx->data[nvec->rx->pos++] = received;
679679
else
680680
dev_err(nvec->dev,
681-
"RX buffer overflow on %p: "
682-
"Trying to write byte %u of %u\n",
681+
"RX buffer overflow on %p: Trying to write byte %u of %u\n",
683682
nvec->rx, nvec->rx ? nvec->rx->pos : 0,
684683
NVEC_MSG_SIZE);
685684
break;

0 commit comments

Comments
 (0)