Skip to content
This repository was archived by the owner on Nov 8, 2023. It is now read-only.

Commit e4b294f

Browse files
KanjiMonsterPaolo Abeni
authored andcommitted
net: dsa: b53: allow lower MTUs on BCM5325/5365
While BCM5325/5365 do not support jumbo frames, they do support slightly oversized frames, so do not error out if requesting a supported MTU for them. Fixes: 6ae5834 ("net: dsa: b53: add MTU configuration support") Signed-off-by: Jonas Gorski <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Signed-off-by: Paolo Abeni <[email protected]>
1 parent ca8c1f7 commit e4b294f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/net/dsa/b53/b53_common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2258,7 +2258,7 @@ static int b53_change_mtu(struct dsa_switch *ds, int port, int mtu)
22582258
bool allow_10_100;
22592259

22602260
if (is5325(dev) || is5365(dev))
2261-
return -EOPNOTSUPP;
2261+
return 0;
22622262

22632263
if (!dsa_is_cpu_port(ds, port))
22642264
return 0;

0 commit comments

Comments
 (0)