rtl8366_smi: add vid parameter to the rtl8366s_get_vlan_4k_entry function
authorGabor Juhos <juhosg@openwrt.org>
Sun, 17 Jan 2010 21:17:46 +0000 (21:17 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Sun, 17 Jan 2010 21:17:46 +0000 (21:17 +0000)
SVN-Revision: 19197

target/linux/ar71xx/files/drivers/net/phy/rtl8366_smi.c

index f0f9a76c9e6b435e44185e409da217d4e2d7b7d3..557d84902954cb62564f768e22997b477d8cc88f 100644 (file)
@@ -597,15 +597,14 @@ static int rtl8366_get_mib_counter(struct rtl8366_smi *smi, int counter,
        return 0;
 }
 
-static int rtl8366s_get_vlan_4k_entry(struct rtl8366_smi *smi,
+static int rtl8366s_get_vlan_4k_entry(struct rtl8366_smi *smi, u32 vid,
                                      struct rtl8366s_vlan4kentry *vlan4k)
 {
        int err;
        u32 data;
-       u32 vid;
        u16 *tableaddr;
 
-       vid = vlan4k->vid;
+       vlan4k->vid = vid;
 
        if (vid >= RTL8366_NUM_VIDS)
                return -EINVAL;
@@ -857,8 +856,7 @@ static int rtl8366_set_vlan_port_pvid(struct rtl8366_smi *smi, int port,
 
        /* Updating the 4K entry; lookup it and change the port member set */
        memset(&vlan4K, '\0', sizeof(struct rtl8366s_vlan4kentry));
-       vlan4K.vid = val;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, val, &vlan4K);
        vlan4K.member |= ((1 << port) | RTL8366_PORT_CPU);
        vlan4K.untag = RTL8366_PORT_ALL_BUT_CPU;
        rtl8366s_set_vlan_4k_entry(smi, &vlan4K);
@@ -1372,8 +1370,7 @@ static int rtl8366_attr_get_vlan_info(struct switch_dev *dev,
        memset(&vlan4K, '\0', sizeof(struct rtl8366s_vlan4kentry));
 
        rtl8366s_get_vlan_member_config(smi, val->port_vlan, &vlanMC);
-       vlan4K.vid = vlanMC.vid;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, vlanMC.vid, &vlan4K);
 
        len += snprintf(buf + len, sizeof(buf) - len, "VLAN %d: Ports: ",
                        val->port_vlan);
@@ -1504,8 +1501,7 @@ static int rtl8366_set_member(struct switch_dev *dev,
 
        rtl8366s_get_vlan_member_config(smi, val->port_vlan, &vlanMC);
 
-       vlan4K.vid = vlanMC.vid;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, vlanMC.vid, &vlan4K);
 
        vlan4K.member = vlanMC.member = val->value.i;
        rtl8366s_set_vlan_member_config(smi, val->port_vlan, &vlanMC);
@@ -1529,8 +1525,7 @@ static int rtl8366_get_member(struct switch_dev *dev,
 
        rtl8366s_get_vlan_member_config(smi, val->port_vlan, &vlanMC);
 
-       vlan4K.vid = vlanMC.vid;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, vlanMC.vid, &vlan4K);
 
        val->value.i = vlanMC.member;
 
@@ -1551,9 +1546,7 @@ static int rtl8366_set_untag(struct switch_dev *dev,
                return -EINVAL;
 
        rtl8366s_get_vlan_member_config(smi, val->port_vlan, &vlanMC);
-
-       vlan4K.vid = vlanMC.vid;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, vlanMC.vid, &vlan4K);
 
        vlan4K.untag = vlanMC.untag = val->value.i;
        rtl8366s_set_vlan_member_config(smi, val->port_vlan, &vlanMC);
@@ -1576,8 +1569,7 @@ static int rtl8366_get_untag(struct switch_dev *dev,
                return -EINVAL;
 
        rtl8366s_get_vlan_member_config(smi, val->port_vlan, &vlanMC);
-       vlan4K.vid = vlanMC.vid;
-       rtl8366s_get_vlan_4k_entry(smi, &vlan4K);
+       rtl8366s_get_vlan_4k_entry(smi, vlanMC.vid, &vlan4K);
 
 
        val->value.i = vlanMC.untag;