Skip to content

Commit

Permalink
staging: dgnc: Fix quoted string split across lines warning
Browse files Browse the repository at this point in the history
This patch fixes "quoted string split across lines warning" warning in
dgnc_cls.c

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
  • Loading branch information
Gulsah Kose authored and Peter P Waskiewicz Jr committed Mar 17, 2014
1 parent 6461900 commit d522924
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions drivers/staging/dgnc/dgnc_cls.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,8 @@ static irqreturn_t cls_intr(int irq, void *voidbrd)
* Check to make sure its for us.
*/
if (brd->magic != DGNC_BOARD_MAGIC) {
APR((
"Received interrupt (%d) with a board pointer "
"that wasn't ours!\n", irq));
APR(("Received interrupt (%d) with a board pointer that wasn't ours!\n",
irq));
return IRQ_NONE;
}

Expand All @@ -846,8 +845,7 @@ static irqreturn_t cls_intr(int irq, void *voidbrd)
/* If 0, no interrupts pending */
if (!poll_reg) {
DPR_INTR((
"Kernel interrupted to me, but no pending "
"interrupts...\n"));
"Kernel interrupted to me, but no pending interrupts...\n"));
DGNC_UNLOCK(brd->bd_intr_lock, lock_flags);
return IRQ_NONE;
}
Expand Down Expand Up @@ -1388,8 +1386,7 @@ static void cls_send_break(struct channel_t *ch, int msecs)
writeb((temp | UART_LCR_SBC), &ch->ch_cls_uart->lcr);
ch->ch_flags |= (CH_BREAK_SENDING);
DPR_IOCTL((
"Port %d. Starting UART_LCR_SBC! start: %lx "
"should end: %lx\n",
"Port %d. Starting UART_LCR_SBC! start: %lx should end: %lx\n",
ch->ch_portnum, jiffies, ch->ch_stop_sending_break));
}
}
Expand Down

0 comments on commit d522924

Please sign in to comment.