1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 00:14:05 +02:00

adm5120: fix promiscuous mode handling (patch from #8581), backport of r26673

git-svn-id: svn://svn.openwrt.org/openwrt/branches/backfire@26674 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2011-04-15 00:21:27 +00:00
parent 2d335ddc1c
commit 408a49aa39

View File

@ -962,10 +962,10 @@ static void adm5120_if_set_multicast_list(struct net_device *dev)
/* to the CPU, the Bridge Test Mode has to be activated. */
/* Check if there is any vlan in promisc mode. */
if (t & (SWITCH_PORTS_NOCPU << CPUP_CONF_DUNP_SHIFT))
t &= ~CPUP_CONF_BTM; /* Disable Bridge Testing Mode */
else
if (~t & (SWITCH_PORTS_NOCPU << CPUP_CONF_DUNP_SHIFT))
t |= CPUP_CONF_BTM; /* Enable Bridge Testing Mode */
else
t &= ~CPUP_CONF_BTM; /* Disable Bridge Testing Mode */
sw_write_reg(SWITCH_REG_CPUP_CONF, t);