Skip to content

Commit

Permalink
generic: ar8216: allow to use more ports
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31010 3c298f89-4303-0410-b956-a3cf2f4a3e73
  • Loading branch information
juhosg committed Mar 18, 2012
1 parent 3f02078 commit a79728b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions target/linux/generic/files/drivers/net/phy/ar8216.c
Expand Up @@ -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;

Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit a79728b

Please sign in to comment.