Commit d5229247 authored by Gulsah Kose's avatar Gulsah Kose Committed by Peter P Waskiewicz Jr

staging: dgnc: Fix quoted string split across lines warning

This patch fixes "quoted string split across lines warning" warning in
dgnc_cls.c
Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent 64619003
...@@ -827,9 +827,8 @@ static irqreturn_t cls_intr(int irq, void *voidbrd) ...@@ -827,9 +827,8 @@ static irqreturn_t cls_intr(int irq, void *voidbrd)
* Check to make sure its for us. * Check to make sure its for us.
*/ */
if (brd->magic != DGNC_BOARD_MAGIC) { if (brd->magic != DGNC_BOARD_MAGIC) {
APR(( APR(("Received interrupt (%d) with a board pointer that wasn't ours!\n",
"Received interrupt (%d) with a board pointer " irq));
"that wasn't ours!\n", irq));
return IRQ_NONE; return IRQ_NONE;
} }
...@@ -846,8 +845,7 @@ static irqreturn_t cls_intr(int irq, void *voidbrd) ...@@ -846,8 +845,7 @@ static irqreturn_t cls_intr(int irq, void *voidbrd)
/* If 0, no interrupts pending */ /* If 0, no interrupts pending */
if (!poll_reg) { if (!poll_reg) {
DPR_INTR(( DPR_INTR((
"Kernel interrupted to me, but no pending " "Kernel interrupted to me, but no pending interrupts...\n"));
"interrupts...\n"));
DGNC_UNLOCK(brd->bd_intr_lock, lock_flags); DGNC_UNLOCK(brd->bd_intr_lock, lock_flags);
return IRQ_NONE; return IRQ_NONE;
} }
...@@ -1388,8 +1386,7 @@ static void cls_send_break(struct channel_t *ch, int msecs) ...@@ -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); writeb((temp | UART_LCR_SBC), &ch->ch_cls_uart->lcr);
ch->ch_flags |= (CH_BREAK_SENDING); ch->ch_flags |= (CH_BREAK_SENDING);
DPR_IOCTL(( DPR_IOCTL((
"Port %d. Starting UART_LCR_SBC! start: %lx " "Port %d. Starting UART_LCR_SBC! start: %lx should end: %lx\n",
"should end: %lx\n",
ch->ch_portnum, jiffies, ch->ch_stop_sending_break)); ch->ch_portnum, jiffies, ch->ch_stop_sending_break));
} }
} }
......
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