forked from Ivasoft/openwrt
generic: rtl8366: enable ports only after VLAN configuration is done
SVN-Revision: 24938
This commit is contained in:
@@ -257,9 +257,6 @@ static int rtl8366s_hw_init(struct rtl8366_smi *smi)
|
||||
REG_RMW(smi, RTL8366S_SGCR, RTL8366S_SGCR_MAX_LENGTH_MASK,
|
||||
RTL8366S_SGCR_MAX_LENGTH_1536);
|
||||
|
||||
/* enable all ports */
|
||||
REG_WR(smi, RTL8366S_PECR, 0);
|
||||
|
||||
/* enable learning for all ports */
|
||||
REG_WR(smi, RTL8366S_SSCR0, 0);
|
||||
|
||||
@@ -808,7 +805,11 @@ static int rtl8366s_sw_reset_switch(struct switch_dev *dev)
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
return rtl8366_reset_vlan(smi);
|
||||
err = rtl8366_reset_vlan(smi);
|
||||
if (err)
|
||||
return err;
|
||||
|
||||
return rtl8366_enable_all_ports(smi, 1);
|
||||
}
|
||||
|
||||
static struct switch_attr rtl8366s_globals[] = {
|
||||
|
||||
Reference in New Issue
Block a user