summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-03-18 22:06:19 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-03-18 22:06:19 +0000
commit006b3b846eea3bd9c2ac9f2eabe5d02df7d10882 (patch)
treeebd37662626d0e5f2973f552b781af664138c190
parenteb5f0067b67f99b01df12ea4166205d2b5810c15 (diff)
downloadmaster-31e0f0ae-006b3b846eea3bd9c2ac9f2eabe5d02df7d10882.tar.gz
master-31e0f0ae-006b3b846eea3bd9c2ac9f2eabe5d02df7d10882.tar.bz2
master-31e0f0ae-006b3b846eea3bd9c2ac9f2eabe5d02df7d10882.zip
generic: ar8216: add setup_port field to ar8xxx_chip
SVN-Revision: 30999
-rw-r--r--target/linux/generic/files/drivers/net/phy/ar8216.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c
index 34084517a3..4c64b460ba 100644
--- a/target/linux/generic/files/drivers/net/phy/ar8216.c
+++ b/target/linux/generic/files/drivers/net/phy/ar8216.c
@@ -40,6 +40,8 @@ struct ar8216_priv;
struct ar8xxx_chip {
int (*hw_init)(struct ar8216_priv *priv);
+ void (*setup_port)(struct ar8216_priv *priv, int port, u32 egress,
+ u32 ingress, u32 members, u32 pvid);
};
struct ar8216_priv {
@@ -590,12 +592,8 @@ ar8216_hw_apply(struct switch_dev *dev)
ingress = AR8216_IN_PORT_ONLY;
}
- if (priv->chip_type == AR8236)
- ar8236_setup_port(priv, i, egress, ingress, portmask[i],
- pvid);
- else
- ar8216_setup_port(priv, i, egress, ingress, portmask[i],
- pvid);
+ priv->chip->setup_port(priv, i, egress, ingress, portmask[i],
+ pvid);
}
mutex_unlock(&priv->reg_mutex);
return 0;
@@ -745,14 +743,17 @@ ar8216_init_port(struct ar8216_priv *priv, int port)
static const struct ar8xxx_chip ar8216_chip = {
.hw_init = ar8216_hw_init,
+ .setup_port = ar8216_setup_port,
};
static const struct ar8xxx_chip ar8236_chip = {
.hw_init = ar8236_hw_init,
+ .setup_port = ar8236_setup_port,
};
static const struct ar8xxx_chip ar8316_chip = {
.hw_init = ar8316_hw_init,
+ .setup_port = ar8216_setup_port,
};
static int