Message ID | 20240611135434.3180973-3-ms@dev.tdt.de (mailing list archive) |
---|---|
State | Accepted |
Commit | b98f122ebdac28b0c932f3f4474eb0927c39297b |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: dsa: lantiq_gswip: code improvements | expand |
On Tue, Jun 11, 2024 at 03:54:24PM +0200, Martin Schiller wrote: > From: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > > Add the CPU port to gswip_xrx200_phylink_get_caps() and > gswip_xrx300_phylink_get_caps(). It connects through a SoC-internal bus, > so the only allowed phy-mode is PHY_INTERFACE_MODE_INTERNAL. > > Signed-off-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > Reviewed-by: Vladimir Oltean <olteanv@gmail.com> > Acked-by: Hauke Mehrtens <hauke@hauke-m.de> > --- Similar thing with the sign off here, and there are a few other patches on which I'm not going to comment on individually.
On 2024-06-13 13:50, Vladimir Oltean wrote: > On Tue, Jun 11, 2024 at 03:54:24PM +0200, Martin Schiller wrote: >> From: Martin Blumenstingl <martin.blumenstingl@googlemail.com> >> >> Add the CPU port to gswip_xrx200_phylink_get_caps() and >> gswip_xrx300_phylink_get_caps(). It connects through a SoC-internal >> bus, >> so the only allowed phy-mode is PHY_INTERFACE_MODE_INTERNAL. >> >> Signed-off-by: Martin Blumenstingl >> <martin.blumenstingl@googlemail.com> >> Reviewed-by: Vladimir Oltean <olteanv@gmail.com> >> Acked-by: Hauke Mehrtens <hauke@hauke-m.de> >> --- > > Similar thing with the sign off here, and there are a few other patches > on which I'm not going to comment on individually. Signed-off-by: Martin Schiller <ms@dev.tdt.de>
diff --git a/drivers/net/dsa/lantiq_gswip.c b/drivers/net/dsa/lantiq_gswip.c index a557049e34f5..b9c7076ce32f 100644 --- a/drivers/net/dsa/lantiq_gswip.c +++ b/drivers/net/dsa/lantiq_gswip.c @@ -1516,6 +1516,7 @@ static void gswip_xrx200_phylink_get_caps(struct dsa_switch *ds, int port, case 2: case 3: case 4: + case 6: __set_bit(PHY_INTERFACE_MODE_INTERNAL, config->supported_interfaces); break; @@ -1547,6 +1548,7 @@ static void gswip_xrx300_phylink_get_caps(struct dsa_switch *ds, int port, case 2: case 3: case 4: + case 6: __set_bit(PHY_INTERFACE_MODE_INTERNAL, config->supported_interfaces); break;