2023-05-30 08:51:03

by Lukasz Majewski

[permalink] [raw]
Subject: [PATCH v8 1/3] net: dsa: Define .set_max_frame_size() callback for mv88e6250 SoC family

Switches from mv88e6250 family (including mv88e6020 and mv88e6071) need
the possibility to setup the maximal frame size, as they support frames
up to 2048 bytes.

Signed-off-by: Lukasz Majewski <[email protected]>
Reviewed-by: Andrew Lunn <[email protected]>
---
Changes for v6:
- New patch

Changes for v7:
- Update commit message

Changes for v8:
- Update commit message and subject line
---
drivers/net/dsa/mv88e6xxx/chip.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c
index 64a2f2f83735..b5e43dd40431 100644
--- a/drivers/net/dsa/mv88e6xxx/chip.c
+++ b/drivers/net/dsa/mv88e6xxx/chip.c
@@ -5043,6 +5043,7 @@ static const struct mv88e6xxx_ops mv88e6250_ops = {
.avb_ops = &mv88e6352_avb_ops,
.ptp_ops = &mv88e6250_ptp_ops,
.phylink_get_caps = mv88e6250_phylink_get_caps,
+ .set_max_frame_size = mv88e6185_g1_set_max_frame_size,
};

static const struct mv88e6xxx_ops mv88e6290_ops = {
--
2.20.1



2023-05-30 21:50:20

by Florian Fainelli

[permalink] [raw]
Subject: Re: [PATCH v8 1/3] net: dsa: Define .set_max_frame_size() callback for mv88e6250 SoC family

On 5/30/23 01:39, Lukasz Majewski wrote:
> Switches from mv88e6250 family (including mv88e6020 and mv88e6071) need
> the possibility to setup the maximal frame size, as they support frames
> up to 2048 bytes.
>
> Signed-off-by: Lukasz Majewski <[email protected]>
> Reviewed-by: Andrew Lunn <[email protected]>

Reviewed-by: Florian Fainelli <[email protected]>
--
Florian