diff mbox series

[v6,03/13] phy: cadence: cadence-sierra: Create PHY only for "phy" or "link" sub-nodes

Message ID 20210310154558.32078-4-kishon@ti.com
State New
Headers show
Series PHY: Add support in Sierra to use external clock | expand

Commit Message

Kishon Vijay Abraham I March 10, 2021, 3:45 p.m. UTC
Cadence Sierra PHY driver registers PHY using devm_phy_create()
for all sub-nodes of Sierra device tree node. However Sierra device
tree node can have sub-nodes for the various clocks in addtion to the
PHY. Use devm_phy_create() only for nodes with name "phy" (or "link"
for old device tree) which represent the actual PHY.

Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

---
 drivers/phy/cadence/phy-cadence-sierra.c | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.17.1

Comments

Swapnil Jakhade March 15, 2021, 5:50 a.m. UTC | #1
> -----Original Message-----

> From: Kishon Vijay Abraham I <kishon@ti.com>

> Sent: Wednesday, March 10, 2021 9:16 PM

> To: Kishon Vijay Abraham I <kishon@ti.com>; Vinod Koul

> <vkoul@kernel.org>; Rob Herring <robh+dt@kernel.org>; Philipp Zabel

> <p.zabel@pengutronix.de>; Swapnil Kashinath Jakhade

> <sjakhade@cadence.com>

> Cc: linux-kernel@vger.kernel.org; devicetree@vger.kernel.org; Lokesh Vutla

> <lokeshvutla@ti.com>

> Subject: [PATCH v6 03/13] phy: cadence: cadence-sierra: Create PHY only for

> "phy" or "link" sub-nodes

> 


Nitpick, subject line in all Sierra patches in the series could be uniform.
Maybe, phy: cadence: Sierra as per earlier commits.

Reviewed-by: Swapnil Jakhade <sjakhade@cadence.com>


Thanks & regards,
Swapnil

> EXTERNAL MAIL

> 

> 

> Cadence Sierra PHY driver registers PHY using devm_phy_create()

> for all sub-nodes of Sierra device tree node. However Sierra device

> tree node can have sub-nodes for the various clocks in addtion to the

> PHY. Use devm_phy_create() only for nodes with name "phy" (or "link"

> for old device tree) which represent the actual PHY.

> 

> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>

> ---

>  drivers/phy/cadence/phy-cadence-sierra.c | 4 ++++

>  1 file changed, 4 insertions(+)

> 

> diff --git a/drivers/phy/cadence/phy-cadence-sierra.c

> b/drivers/phy/cadence/phy-cadence-sierra.c

> index 19f32ae877b9..f7ba0ed416bc 100644

> --- a/drivers/phy/cadence/phy-cadence-sierra.c

> +++ b/drivers/phy/cadence/phy-cadence-sierra.c

> @@ -577,6 +577,10 @@ static int cdns_sierra_phy_probe(struct

> platform_device *pdev)

>  	for_each_available_child_of_node(dn, child) {

>  		struct phy *gphy;

> 

> +		if (!(of_node_name_eq(child, "phy") ||

> +		      of_node_name_eq(child, "link")))

> +			continue;

> +

>  		sp->phys[node].lnk_rst =

>  			of_reset_control_array_get_exclusive(child);

> 

> --

> 2.17.1
diff mbox series

Patch

diff --git a/drivers/phy/cadence/phy-cadence-sierra.c b/drivers/phy/cadence/phy-cadence-sierra.c
index 19f32ae877b9..f7ba0ed416bc 100644
--- a/drivers/phy/cadence/phy-cadence-sierra.c
+++ b/drivers/phy/cadence/phy-cadence-sierra.c
@@ -577,6 +577,10 @@  static int cdns_sierra_phy_probe(struct platform_device *pdev)
 	for_each_available_child_of_node(dn, child) {
 		struct phy *gphy;
 
+		if (!(of_node_name_eq(child, "phy") ||
+		      of_node_name_eq(child, "link")))
+			continue;
+
 		sp->phys[node].lnk_rst =
 			of_reset_control_array_get_exclusive(child);