mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-28 21:45:01 +08:00
net: ethernet: ti: ale: use define for host port in cpsw_ale_set_allmulti()
Use ALE_PORT_HOST define for host port in cpsw_ale_set_allmulti() instead of constants. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
af9f4e6a33
commit
91c88659a7
@ -491,9 +491,9 @@ void cpsw_ale_set_allmulti(struct cpsw_ale *ale, int allmulti)
|
||||
cpsw_ale_get_vlan_unreg_mcast(ale_entry,
|
||||
ale->vlan_field_bits);
|
||||
if (allmulti)
|
||||
unreg_mcast |= 1;
|
||||
unreg_mcast |= ALE_PORT_HOST;
|
||||
else
|
||||
unreg_mcast &= ~1;
|
||||
unreg_mcast &= ~ALE_PORT_HOST;
|
||||
cpsw_ale_set_vlan_unreg_mcast(ale_entry, unreg_mcast,
|
||||
ale->vlan_field_bits);
|
||||
cpsw_ale_write(ale, idx, ale_entry);
|
||||
|
Loading…
Reference in New Issue
Block a user