aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/net/ethernet/ti/cpsw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
index 4f508aa782c5..a1ba3a0c28da 100644
--- a/drivers/net/ethernet/ti/cpsw.c
+++ b/drivers/net/ethernet/ti/cpsw.c
@@ -1632,8 +1632,8 @@ static void cpsw_ndo_poll_controller(struct net_device *ndev)
1632 1632
1633 cpsw_intr_disable(priv); 1633 cpsw_intr_disable(priv);
1634 cpdma_ctlr_int_ctrl(priv->dma, false); 1634 cpdma_ctlr_int_ctrl(priv->dma, false);
1635 cpsw_rx_interrupt(priv->irq[0], priv); 1635 cpsw_rx_interrupt(priv->irqs_table[0], priv);
1636 cpsw_tx_interrupt(priv->irq[1], priv); 1636 cpsw_tx_interrupt(priv->irqs_table[1], priv);
1637 cpdma_ctlr_int_ctrl(priv->dma, true); 1637 cpdma_ctlr_int_ctrl(priv->dma, true);
1638 cpsw_intr_enable(priv); 1638 cpsw_intr_enable(priv);
1639} 1639}