mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
generic: rtl8366: allow use of VIDs 16-4095 if vlan4k is enabled
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22704 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -593,7 +593,12 @@ static int rtl8366s_enable_vlan4k(struct rtl8366_smi *smi, int enable)
|
||||
|
||||
static int rtl8366s_is_vlan_valid(struct rtl8366_smi *smi, unsigned vlan)
|
||||
{
|
||||
if (vlan == 0 || vlan >= RTL8366S_NUM_VLANS)
|
||||
unsigned max = RTL8366S_NUM_VLANS;
|
||||
|
||||
if (smi->vlan4k_enabled)
|
||||
max = RTL8366S_NUM_VIDS - 1;
|
||||
|
||||
if (vlan == 0 || vlan >= max)
|
||||
return 0;
|
||||
|
||||
return 1;
|
||||
@@ -909,7 +914,7 @@ static int rtl8366s_switch_init(struct rtl8366_smi *smi)
|
||||
dev->name = "RTL8366S";
|
||||
dev->cpu_port = RTL8366S_PORT_NUM_CPU;
|
||||
dev->ports = RTL8366S_NUM_PORTS;
|
||||
dev->vlans = RTL8366S_NUM_VLANS;
|
||||
dev->vlans = RTL8366S_NUM_VIDS;
|
||||
dev->ops = &rtl8366_ops;
|
||||
dev->devname = dev_name(smi->parent);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user