projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d5451d
)
igb: Fix build warning when DCA is disabled.
author
David S. Miller
<davem@davemloft.net>
Fri, 26 Dec 2008 23:13:55 +0000
(15:13 -0800)
committer
David S. Miller
<davem@davemloft.net>
Fri, 26 Dec 2008 23:13:55 +0000
(15:13 -0800)
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/igb/igb_main.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/net/igb/igb_main.c
b/drivers/net/igb/igb_main.c
index 9331e5212461f40766aefdceb89a144c0d775e8d..022794e579c7367f326aaa886128579d042b18d4 100644
(file)
--- a/
drivers/net/igb/igb_main.c
+++ b/
drivers/net/igb/igb_main.c
@@
-3379,7
+3379,6
@@
static void igb_write_itr(struct igb_ring *ring)
static irqreturn_t igb_msix_rx(int irq, void *data)
{
struct igb_ring *rx_ring = data;
- struct igb_adapter *adapter = rx_ring->adapter;
/* Write the ITR value calculated at the end of the
* previous interrupt.
@@
-3391,7
+3390,7
@@
static irqreturn_t igb_msix_rx(int irq, void *data)
__netif_rx_schedule(&rx_ring->napi);
#ifdef CONFIG_IGB_DCA
- if (adapter->flags & IGB_FLAG_DCA_ENABLED)
+ if (
rx_ring->
adapter->flags & IGB_FLAG_DCA_ENABLED)
igb_update_rx_dca(rx_ring);
#endif
return IRQ_HANDLED;