From: Rafał Miłecki Date: Tue, 12 May 2015 13:18:53 +0000 (+0000) Subject: b53: Allow using all ports on BCM53012 X-Git-Url: http://207.154.207.93/?a=commitdiff_plain;h=315ef7e961fc1483b2ce68e22e9b537a18a0d646;p=15.05%2Fopenwrt.git b53: Allow using all ports on BCM53012 This chipset has at least 8 usable ports, e.g. Netgear R8000 has ports 5, 7 and 8 connected to Ethernet interfaces: vlan1ports=0 1 2 3 5 7 8* vlan2ports=4 8u Port 6 seems to be always disabled. Signed-off-by: Rafał Miłecki Acked-by: Jonas Gorski git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45676 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/target/linux/generic/files/drivers/net/phy/b53/b53_common.c b/target/linux/generic/files/drivers/net/phy/b53/b53_common.c index ac7c10cadc..2b05d5d464 100644 --- a/target/linux/generic/files/drivers/net/phy/b53/b53_common.c +++ b/target/linux/generic/files/drivers/net/phy/b53/b53_common.c @@ -1214,7 +1214,7 @@ static const struct b53_chip_data b53_switch_chips[] = { .dev_name = "BCM53012", .alias = "bcm53011", .vlans = 4096, - .enabled_ports = 0x1f, + .enabled_ports = 0x1bf, .cpu_port = B53_CPU_PORT_25, /* TODO: auto detect */ .vta_regs = B53_VTA_REGS, .duplex_reg = B53_DUPLEX_STAT_GE,