diff options
author | Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> | 2018-07-27 19:54:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-29 12:51:31 -0700 |
commit | 193736c81788556811238690ed0048af18740a8d (patch) | |
tree | dd46560130dea7c63a2f3086f43d87889e609e0f /drivers/net/ethernet/ti | |
parent | d05c1ce5d7fd66d9e1c64e799dcb78a0b2dd89cf (diff) | |
download | blackbird-obmc-linux-193736c81788556811238690ed0048af18740a8d.tar.gz blackbird-obmc-linux-193736c81788556811238690ed0048af18740a8d.zip |
net: ethernet: ti: cpsw: add missed RX_CTAG feature for second slave
Seems it was missed while adding for first net dev in dual-emac mode.
Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org>
Reviewed-by: Grygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/ti')
-rw-r--r-- | drivers/net/ethernet/ti/cpsw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c index 171abcfb6184..1b54c26c2bec 100644 --- a/drivers/net/ethernet/ti/cpsw.c +++ b/drivers/net/ethernet/ti/cpsw.c @@ -3287,7 +3287,7 @@ static int cpsw_probe_dual_emac(struct cpsw_priv *priv) priv_sl2->emac_port = 1; cpsw->slaves[1].ndev = ndev; - ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER; + ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_CTAG_RX; ndev->netdev_ops = &cpsw_netdev_ops; ndev->ethtool_ops = &cpsw_ethtool_ops; |