Message ID | 20230407134626.47928-7-arinc.unal@arinc9.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [RFC,v2,net-next,01/14] net: dsa: mt7530: fix comments regarding port 5 and 6 for both switches | expand |
On Fri, Apr 07, 2023 at 04:46:18PM +0300, arinc9.unal@gmail.com wrote: > From: Arınç ÜNAL <arinc.unal@arinc9.com> > > There is no need to set priv->p5_interface and priv->p6_interface to > PHY_INTERFACE_MODE_NA on mt7530_setup() and mt7531_setup(). > > As Vladimir explained, in include/linux/phy.h we have: > > Therefore, do not put 0 into a variable containing 0. The explanation is unnecessarily long. I only provided it to make sure you understand.
On 11.04.2023 17:54, Vladimir Oltean wrote: > On Fri, Apr 07, 2023 at 04:46:18PM +0300, arinc9.unal@gmail.com wrote: >> From: Arınç ÜNAL <arinc.unal@arinc9.com> >> >> There is no need to set priv->p5_interface and priv->p6_interface to >> PHY_INTERFACE_MODE_NA on mt7530_setup() and mt7531_setup(). >> >> As Vladimir explained, in include/linux/phy.h we have: >> >> Therefore, do not put 0 into a variable containing 0. > > The explanation is unnecessarily long. I only provided it to make sure > you understand. I don't see a problem with a bit of verbosity on the patch log. It should make the reader understand the code path better. Arınç
diff --git a/drivers/net/dsa/mt7530.c b/drivers/net/dsa/mt7530.c index 8a47dcb96cdf..fc5428baa905 100644 --- a/drivers/net/dsa/mt7530.c +++ b/drivers/net/dsa/mt7530.c @@ -2247,8 +2247,6 @@ mt7530_setup(struct dsa_switch *ds) val |= MHWTRAP_MANUAL; mt7530_write(priv, MT7530_MHWTRAP, val); - priv->p6_interface = PHY_INTERFACE_MODE_NA; - /* Enable and reset MIB counters */ mt7530_mib_reset(ds); @@ -2466,10 +2464,6 @@ mt7531_setup(struct dsa_switch *ds) mt7530_rmw(priv, MT7531_GPIO_MODE0, MT7531_GPIO0_MASK, MT7531_GPIO0_INTERRUPT); - /* Let phylink decide the interface later. */ - priv->p5_interface = PHY_INTERFACE_MODE_NA; - priv->p6_interface = PHY_INTERFACE_MODE_NA; - /* Enable PHY core PLL, since phy_device has not yet been created * provided for phy_[read,write]_mmd_indirect is called, we provide * our own mt7531_ind_mmd_phy_[read,write] to complete this