Commit f4f9a5e6 authored by Michał Mirosław's avatar Michał Mirosław Committed by David S. Miller

gianfar: remove use of VLAN_TAG_PRESENT

Reviewed-by: default avatarClaudiu Manoil <claudiu.manoil@nxp.com>
Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 9df46aef
...@@ -1134,11 +1134,9 @@ static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule, ...@@ -1134,11 +1134,9 @@ static int gfar_convert_to_filer(struct ethtool_rx_flow_spec *rule,
prio = vlan_tci_prio(rule); prio = vlan_tci_prio(rule);
prio_mask = vlan_tci_priom(rule); prio_mask = vlan_tci_priom(rule);
if (cfi == VLAN_TAG_PRESENT && cfi_mask == VLAN_TAG_PRESENT) { if (cfi_mask) {
vlan |= RQFPR_CFI; if (cfi)
vlan_mask |= RQFPR_CFI; vlan |= RQFPR_CFI;
} else if (cfi != VLAN_TAG_PRESENT &&
cfi_mask == VLAN_TAG_PRESENT) {
vlan_mask |= RQFPR_CFI; vlan_mask |= RQFPR_CFI;
} }
} }
......
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