aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-03-18 22:06:51 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-03-18 22:06:51 +0000
commitbaeb3db74da5c0479b4bbb32a18d6d6e20ef3157 (patch)
treed816236c682352fbf145d20e967166b0f1a5fde6
parent998ee8cbbc94d628dc44ebec6f486f985e8a6d85 (diff)
downloadupstream-baeb3db74da5c0479b4bbb32a18d6d6e20ef3157.tar.gz
upstream-baeb3db74da5c0479b4bbb32a18d6d6e20ef3157.tar.bz2
upstream-baeb3db74da5c0479b4bbb32a18d6d6e20ef3157.zip
generic: ar8216: allow to use more ports
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31010 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/generic/files/drivers/net/phy/ar8216.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/target/linux/generic/files/drivers/net/phy/ar8216.c b/target/linux/generic/files/drivers/net/phy/ar8216.c
index 971ed7ca38..b5c13b084f 100644
--- a/target/linux/generic/files/drivers/net/phy/ar8216.c
+++ b/target/linux/generic/files/drivers/net/phy/ar8216.c
@@ -35,6 +35,7 @@
/* size of the vlan table */
#define AR8X16_MAX_VLANS 128
#define AR8X16_PROBE_RETRIES 10
+#define AR8X16_MAX_PORTS 8
struct ar8216_priv;
@@ -75,7 +76,7 @@ struct ar8216_priv {
u16 vlan_id[AR8X16_MAX_VLANS];
u8 vlan_table[AR8X16_MAX_VLANS];
u8 vlan_tagged;
- u16 pvid[AR8216_NUM_PORTS];
+ u16 pvid[AR8X16_MAX_PORTS];
};
#define to_ar8216(_dev) container_of(_dev, struct ar8216_priv, dev)
@@ -736,7 +737,7 @@ static int
ar8216_sw_hw_apply(struct switch_dev *dev)
{
struct ar8216_priv *priv = to_ar8216(dev);
- u8 portmask[AR8216_NUM_PORTS];
+ u8 portmask[AR8X16_MAX_PORTS];
int i, j;
mutex_lock(&priv->reg_mutex);