1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-01-26 15:21:08 +02:00

rtl8366_smi: fix port->flags calculation in rtl8366_get_ports

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@19237 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
juhosg 2010-01-20 07:06:10 +00:00
parent 2eb1c2d1df
commit 77450dabca

View File

@ -1498,7 +1498,8 @@ static int rtl8366_get_ports(struct switch_dev *dev,
continue;
port->id = i;
port->flags = vlanmc.untag ? 0 : BIT(SWITCH_PORT_FLAG_TAGGED);
port->flags = (vlanmc.untag & BIT(i)) ?
0 : BIT(SWITCH_PORT_FLAG_TAGGED);
val->len++;
port++;
}