generic: fix rtl8366_smi compile warning
authorJohn Crispin <john@openwrt.org>
Thu, 25 Apr 2013 19:03:29 +0000 (19:03 +0000)
committerJohn Crispin <john@openwrt.org>
Thu, 25 Apr 2013 19:03:29 +0000 (19:03 +0000)
drivers/net/phy/rtl8366_smi.c: In function 'rtl8366_sw_set_vlan_ports':
drivers/net/phy/rtl8366_smi.c:1125:6: warning: 'pvid' may be used uninitialized in this function [-Wuninitialized]

Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 36442

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

index d433908131fec723414839c26c68379fb802f994..e2b4f02efaad11a2c627deb1fb671112bd5bdd4a 100644 (file)
@@ -1109,7 +1109,7 @@ int rtl8366_sw_set_vlan_ports(struct switch_dev *dev, struct switch_val *val)
 
        port = &val->value.ports[0];
        for (i = 0; i < val->len; i++, port++) {
-               int pvid;
+               int pvid = 0;
                member |= BIT(port->id);
 
                if (!(port->flags & BIT(SWITCH_PORT_FLAG_TAGGED)))