Browse Source

generic: rtl8367: allow to use VLANs > 31

SVN-Revision: 31914
Gabor Juhos 13 years ago
parent
commit
466ef30173
1 changed files with 3 additions and 0 deletions
  1. 3 0
      target/linux/generic/files/drivers/net/phy/rtl8367.c

+ 3 - 0
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;