netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH net] net: dsa: sja1105: Don't error out on disabled ports with no phy-mode
@ 2020-01-16 18:36 Vladimir Oltean
  2020-01-16 18:38 ` Florian Fainelli
  0 siblings, 1 reply; 3+ messages in thread
From: Vladimir Oltean @ 2020-01-16 18:36 UTC (permalink / raw)
  To: davem, netdev, linux; +Cc: andrew, f.fainelli, vivien.didelot, Vladimir Oltean

From: Vladimir Oltean <vladimir.oltean@nxp.com>

The sja1105_parse_ports_node function was tested only on device trees
where all ports were enabled. Fix this check so that the driver
continues to probe only with the ports where status is not "disabled",
as expected.

Fixes: 8aa9ebccae87 ("net: dsa: Introduce driver for NXP SJA1105 5-port L2 switch")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
---
 drivers/net/dsa/sja1105/sja1105_main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/net/dsa/sja1105/sja1105_main.c b/drivers/net/dsa/sja1105/sja1105_main.c
index 784e6b8166a0..b27ef01b9445 100644
--- a/drivers/net/dsa/sja1105/sja1105_main.c
+++ b/drivers/net/dsa/sja1105/sja1105_main.c
@@ -580,6 +580,9 @@ static int sja1105_parse_ports_node(struct sja1105_private *priv,
 		u32 index;
 		int err;
 
+		if (!of_device_is_available(child))
+			continue;
+
 		/* Get switch port number from DT */
 		if (of_property_read_u32(child, "reg", &index) < 0) {
 			dev_err(dev, "Port number not defined in device tree "
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH net] net: dsa: sja1105: Don't error out on disabled ports with no phy-mode
  2020-01-16 18:36 [PATCH net] net: dsa: sja1105: Don't error out on disabled ports with no phy-mode Vladimir Oltean
@ 2020-01-16 18:38 ` Florian Fainelli
  2020-01-16 18:46   ` Vladimir Oltean
  0 siblings, 1 reply; 3+ messages in thread
From: Florian Fainelli @ 2020-01-16 18:38 UTC (permalink / raw)
  To: Vladimir Oltean, davem, netdev, linux
  Cc: andrew, vivien.didelot, Vladimir Oltean

On 1/16/20 10:36 AM, Vladimir Oltean wrote:
> From: Vladimir Oltean <vladimir.oltean@nxp.com>
> 
> The sja1105_parse_ports_node function was tested only on device trees
> where all ports were enabled. Fix this check so that the driver
> continues to probe only with the ports where status is not "disabled",
> as expected.
> 
> Fixes: 8aa9ebccae87 ("net: dsa: Introduce driver for NXP SJA1105 5-port L2 switch")
> Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
> ---
>  drivers/net/dsa/sja1105/sja1105_main.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/net/dsa/sja1105/sja1105_main.c b/drivers/net/dsa/sja1105/sja1105_main.c
> index 784e6b8166a0..b27ef01b9445 100644
> --- a/drivers/net/dsa/sja1105/sja1105_main.c
> +++ b/drivers/net/dsa/sja1105/sja1105_main.c
> @@ -580,6 +580,9 @@ static int sja1105_parse_ports_node(struct sja1105_private *priv,
>  		u32 index;
>  		int err;
>  
> +		if (!of_device_is_available(child))
> +			continue;

This works, or you can use for_each_available_child_of_node()?

Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
-- 
Florian

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH net] net: dsa: sja1105: Don't error out on disabled ports with no phy-mode
  2020-01-16 18:38 ` Florian Fainelli
@ 2020-01-16 18:46   ` Vladimir Oltean
  0 siblings, 0 replies; 3+ messages in thread
From: Vladimir Oltean @ 2020-01-16 18:46 UTC (permalink / raw)
  To: Florian Fainelli
  Cc: David S. Miller, netdev, Russell King - ARM Linux admin,
	Andrew Lunn, Vivien Didelot, Vladimir Oltean

On Thu, 16 Jan 2020 at 20:38, Florian Fainelli <f.fainelli@gmail.com> wrote:
>
> On 1/16/20 10:36 AM, Vladimir Oltean wrote:
> > From: Vladimir Oltean <vladimir.oltean@nxp.com>
> >
> > The sja1105_parse_ports_node function was tested only on device trees
> > where all ports were enabled. Fix this check so that the driver
> > continues to probe only with the ports where status is not "disabled",
> > as expected.
> >
> > Fixes: 8aa9ebccae87 ("net: dsa: Introduce driver for NXP SJA1105 5-port L2 switch")
> > Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
> > ---
> >  drivers/net/dsa/sja1105/sja1105_main.c | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> > diff --git a/drivers/net/dsa/sja1105/sja1105_main.c b/drivers/net/dsa/sja1105/sja1105_main.c
> > index 784e6b8166a0..b27ef01b9445 100644
> > --- a/drivers/net/dsa/sja1105/sja1105_main.c
> > +++ b/drivers/net/dsa/sja1105/sja1105_main.c
> > @@ -580,6 +580,9 @@ static int sja1105_parse_ports_node(struct sja1105_private *priv,
> >               u32 index;
> >               int err;
> >
> > +             if (!of_device_is_available(child))
> > +                     continue;
>
> This works, or you can use for_each_available_child_of_node()?
>
> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
> --
> Florian

Thanks Florian. I've sent out a v2. I would have linked to v2 in
patchwork here but it looks like it's down.

-Vladimir

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-01-16 18:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16 18:36 [PATCH net] net: dsa: sja1105: Don't error out on disabled ports with no phy-mode Vladimir Oltean
2020-01-16 18:38 ` Florian Fainelli
2020-01-16 18:46   ` Vladimir Oltean

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).