From 5a1c605a9e79124cb13fe6748bc8599d75f72ef2 Mon Sep 17 00:00:00 2001 From: juhosg Date: Sun, 27 May 2012 17:09:41 +0000 Subject: [PATCH] generic: rtl8367: allow to use VLANs > 31 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31914 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/generic/files/drivers/net/phy/rtl8367.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/target/linux/generic/files/drivers/net/phy/rtl8367.c b/target/linux/generic/files/drivers/net/phy/rtl8367.c index d60af022a7..f4ef0c14f4 100644 --- a/target/linux/generic/files/drivers/net/phy/rtl8367.c +++ b/target/linux/generic/files/drivers/net/phy/rtl8367.c @@ -1350,6 +1350,9 @@ static int rtl8367_is_vlan_valid(struct rtl8366_smi *smi, unsigned vlan) { unsigned max = RTL8367_NUM_VLANS; + if (smi->vlan4k_enabled) + max = RTL8367_NUM_VIDS - 1; + if (vlan == 0 || vlan >= max) return 0; -- 2.11.0