aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.6/files/drivers
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-04-24 01:09:47 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-04-24 01:09:47 +0000
commitcc8a466cb1136ce3c007fe329acd2832ac6c04fa (patch)
treeab4e06471c7185e045417c6546a606f199938fa9 /target/linux/generic-2.6/files/drivers
parenta98cb4f921fd5529f8c38c4c646ef608ecec0ff0 (diff)
downloadmaster-187ad058-cc8a466cb1136ce3c007fe329acd2832ac6c04fa.tar.gz
master-187ad058-cc8a466cb1136ce3c007fe329acd2832ac6c04fa.tar.bz2
master-187ad058-cc8a466cb1136ce3c007fe329acd2832ac6c04fa.zip
fix vlan mapping for cpu port on the marvell switch
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10934 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.6/files/drivers')
-rw-r--r--target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c b/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c
index 27c0920bb5..834d31217d 100644
--- a/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c
+++ b/target/linux/generic-2.6/files/drivers/net/phy/mvswitch.c
@@ -274,8 +274,8 @@ mvswitch_config_init(struct phy_device *pdev)
}
/* build the target list for the cpu port */
- for (i = 0, vlmap = 0; i < ARRAY_SIZE(priv->vlans); i++)
- vlmap |= priv->vlans[i];
+ for (i = 0; i < MV_PORTS; i++)
+ vlmap |= (1 << i);
w16(pdev, MV_PORTREG(VLANMAP, MV_CPUPORT),
MV_PORTVLAN_PORTS(vlmap)