mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-04 04:54:18 +00:00
bcaabe6d05
Similar version was upstreamed: bcm27xx/patches-5.4/950-0392-tty-amba-pl011-Add-un-throttle-support.patch Manually adapted: ipq806x/patches-5.4/0063-2-tsens-support-configurable-interrupts.patch layerscape/patches-5.4/301-arch-0008-arm-add-new-non-shareable-ioremap.patch Compile-tested: x86/64 Run-tested: x86/64 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
26 lines
812 B
Diff
26 lines
812 B
Diff
From f4e6d7cdbfae502788bc468295b232dec76ee57e Mon Sep 17 00:00:00 2001
|
|
From: Florian Fainelli <f.fainelli@gmail.com>
|
|
Date: Fri, 12 Mar 2021 13:11:01 -0800
|
|
Subject: [PATCH] net: dsa: bcm_sf2: Fill in BCM4908 CFP entries
|
|
|
|
The BCM4908 switch has 256 CFP entrie, update that setting so CFP can be
|
|
used.
|
|
|
|
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
|
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
|
---
|
|
drivers/net/dsa/bcm_sf2.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/drivers/net/dsa/bcm_sf2.c
|
|
+++ b/drivers/net/dsa/bcm_sf2.c
|
|
@@ -1065,7 +1065,7 @@ static const struct bcm_sf2_of_data bcm_
|
|
.type = BCM4908_DEVICE_ID,
|
|
.core_reg_align = 0,
|
|
.reg_offsets = bcm_sf2_4908_reg_offsets,
|
|
- .num_cfp_rules = 0, /* FIXME */
|
|
+ .num_cfp_rules = 256,
|
|
.num_crossbar_int_ports = 2,
|
|
};
|
|
|