ar71xx: ag71xx: keep VLAN tags if VLAN is not enabled
SVN-Revision: 30768
This commit is contained in:
parent
9698a499b6
commit
7052847972
1 changed files with 8 additions and 4 deletions
|
@ -631,12 +631,16 @@ static void ar7240sw_setup_port(struct ar7240sw *as, unsigned port, u8 portmask)
|
|||
mode = AR7240_PORT_VLAN_MODE_PORT_ONLY;
|
||||
}
|
||||
|
||||
if (as->vlan && (as->vlan_tagged & BIT(port))) {
|
||||
if (as->vlan) {
|
||||
if (as->vlan_tagged & BIT(port))
|
||||
ctrl |= AR7240_PORT_CTRL_VLAN_MODE_ADD <<
|
||||
AR7240_PORT_CTRL_VLAN_MODE_S;
|
||||
} else {
|
||||
else
|
||||
ctrl |= AR7240_PORT_CTRL_VLAN_MODE_STRIP <<
|
||||
AR7240_PORT_CTRL_VLAN_MODE_S;
|
||||
} else {
|
||||
ctrl |= AR7240_PORT_CTRL_VLAN_MODE_KEEP <<
|
||||
AR7240_PORT_CTRL_VLAN_MODE_S;
|
||||
}
|
||||
|
||||
if (!portmask) {
|
||||
|
|
Loading…
Reference in a new issue