diff options
author | David S. Miller <davem@davemloft.net> | 2019-04-28 02:08:25 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-04-28 02:08:25 +0200 |
commit | 026cc9c3eeacb6537e06f284c0fc7ed435af1707 (patch) | |
tree | b69811b83c83804e44d4db0f3b42b8b83b7f953b | |
parent | Merge branch 'net-ethernet-ti-clean-up-and-optimizations' (diff) | |
download | linux-026cc9c3eeacb6537e06f284c0fc7ed435af1707.tar.xz linux-026cc9c3eeacb6537e06f284c0fc7ed435af1707.zip |
cpsw: Put back cpsw_ndo_poll_controller()
To fix the build.
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/ti/cpsw.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c index 660c716e7eb6..c3cba46fac9d 100644 --- a/drivers/net/ethernet/ti/cpsw.c +++ b/drivers/net/ethernet/ti/cpsw.c @@ -2004,6 +2004,18 @@ static int cpsw_ndo_setup_tc(struct net_device *ndev, enum tc_setup_type type, } } +#ifdef CONFIG_NET_POLL_CONTROLLER +static void cpsw_ndo_poll_controller(struct net_device *ndev) +{ + struct cpsw_common *cpsw = ndev_to_cpsw(ndev); + + cpsw_intr_disable(cpsw); + cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw); + cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw); + cpsw_intr_enable(cpsw); +} +#endif + static const struct net_device_ops cpsw_netdev_ops = { .ndo_open = cpsw_ndo_open, .ndo_stop = cpsw_ndo_stop, |