Commit fb7d94a7 authored by Daeseok Youn's avatar Daeseok Youn Committed by Greg Kroah-Hartman

staging: dgnc: remove useless variable 'intr_count'

The 'intr_count' variable was used only for increasing.
So the 'intr_count' variable is not useful for this driver.
Signed-off-by: default avatarDaeseok Youn <daeseok.youn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3bd0010a
...@@ -990,8 +990,6 @@ static irqreturn_t cls_intr(int irq, void *voidbrd) ...@@ -990,8 +990,6 @@ static irqreturn_t cls_intr(int irq, void *voidbrd)
spin_lock_irqsave(&brd->bd_intr_lock, flags); spin_lock_irqsave(&brd->bd_intr_lock, flags);
brd->intr_count++;
/* /*
* Check the board's global interrupt offset to see if we * Check the board's global interrupt offset to see if we
* we actually do have an interrupt pending for us. * we actually do have an interrupt pending for us.
......
...@@ -183,7 +183,6 @@ struct dgnc_board { ...@@ -183,7 +183,6 @@ struct dgnc_board {
uint nasync; /* Number of ports on card */ uint nasync; /* Number of ports on card */
uint irq; /* Interrupt request number */ uint irq; /* Interrupt request number */
ulong intr_count; /* Count of interrupts */
ulong intr_modem; /* Count of interrupts */ ulong intr_modem; /* Count of interrupts */
ulong intr_tx; /* Count of interrupts */ ulong intr_tx; /* Count of interrupts */
ulong intr_rx; /* Count of interrupts */ ulong intr_rx; /* Count of interrupts */
......
...@@ -926,8 +926,6 @@ static irqreturn_t neo_intr(int irq, void *voidbrd) ...@@ -926,8 +926,6 @@ static irqreturn_t neo_intr(int irq, void *voidbrd)
if (!brd || brd->magic != DGNC_BOARD_MAGIC) if (!brd || brd->magic != DGNC_BOARD_MAGIC)
return IRQ_NONE; return IRQ_NONE;
brd->intr_count++;
/* Lock out the slow poller from running on this board. */ /* Lock out the slow poller from running on this board. */
spin_lock_irqsave(&brd->bd_intr_lock, flags); spin_lock_irqsave(&brd->bd_intr_lock, flags);
......
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