ar8216: use vlan configuration for connecting ports (forced to be untagged) even...
authorFelix Fietkau <nbd@openwrt.org>
Thu, 12 Jan 2012 10:15:11 +0000 (10:15 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 12 Jan 2012 10:15:11 +0000 (10:15 +0000)
SVN-Revision: 29719

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

index 57088a97484fa1ae851e0b12c2c7d9602508c4b2..3019aced872251b02bbf38c4e1c0a9afc2130c01 100644 (file)
@@ -48,6 +48,8 @@ struct ar8216_priv {
        bool port4_phy;
        char buf[80];
 
+       bool init;
+
        /* all fields below are cleared on reset */
        bool vlan;
        u16 vlan_id[AR8X16_MAX_VLANS];
@@ -550,7 +552,7 @@ ar8216_hw_apply(struct switch_dev *dev)
        ar8216_vtu_op(priv, AR8216_VTU_OP_FLUSH, 0);
 
        memset(portmask, 0, sizeof(portmask));
-       if (priv->vlan) {
+       if (!priv->init) {
                /* calculate the port destination masks and load vlans
                 * into the vlan translation unit */
                for (j = 0; j < AR8X16_MAX_VLANS; j++) {
@@ -877,6 +879,8 @@ ar8216_config_init(struct phy_device *pdev)
                goto done;
        }
 
+       priv->init = true;
+
        if (priv->chip == AR8316) {
                ret = ar8316_hw_init(priv);
                if (ret) {
@@ -912,6 +916,8 @@ ar8216_config_init(struct phy_device *pdev)
                dev->netdev_ops = &priv->ndo;
        }
 
+       priv->init = false;
+
 done:
        return ret;
 }