Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a83b145 authored by Axel Lin's avatar Axel Lin Committed by Kishon Vijay Abraham I
Browse files

phy: armada375-usb2: Set drvdata for phy and use it



At the context we have pointer to struct phy, it's useful to call
phy_get_drvdata() to get the address of cluster_phy. This has slightly
better readability than calling dev_get_drvdata(phy->dev.parent).

Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarKishon Vijay Abraham I <kishon@ti.com>
parent 5bd568f5
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ static int armada375_usb_phy_init(struct phy *phy)
	struct armada375_cluster_phy *cluster_phy;
	u32 reg;

	cluster_phy = dev_get_drvdata(phy->dev.parent);
	cluster_phy = phy_get_drvdata(phy);
	if (!cluster_phy)
		return -ENODEV;

@@ -131,6 +131,7 @@ static int armada375_usb_phy_probe(struct platform_device *pdev)
	cluster_phy->reg = usb_cluster_base;

	dev_set_drvdata(dev, cluster_phy);
	phy_set_drvdata(phy, cluster_phy);

	phy_provider = devm_of_phy_provider_register(&pdev->dev,
						     armada375_usb_phy_xlate);