diff mbox series

[12/16] PCI: samsung: Get PHY using non-DT version

Message ID 20230214121333.1837-13-shradha.t@samsung.com (mailing list archive)
State Changes Requested
Delegated to: Lorenzo Pieralisi
Headers show
Series Refactor Exynos PCIe driver to make it generic | expand

Commit Message

Shradha Todi Feb. 14, 2023, 12:13 p.m. UTC
Replace devm_of_phy_get with devm_phy_get to get the
PHY pointer.

Signed-off-by: Shradha Todi <shradha.t@samsung.com>
---
 drivers/pci/controller/dwc/pci-samsung.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/drivers/pci/controller/dwc/pci-samsung.c b/drivers/pci/controller/dwc/pci-samsung.c
index e6e2a8ab4403..719d284e1552 100644
--- a/drivers/pci/controller/dwc/pci-samsung.c
+++ b/drivers/pci/controller/dwc/pci-samsung.c
@@ -301,7 +301,6 @@  static int exynos_pcie_probe(struct platform_device *pdev)
 {
 	struct device *dev = &pdev->dev;
 	struct samsung_pcie *sp;
-	struct device_node *np = dev->of_node;
 	int ret;
 
 	sp = devm_kzalloc(dev, sizeof(*sp), GFP_KERNEL);
@@ -311,7 +310,7 @@  static int exynos_pcie_probe(struct platform_device *pdev)
 	sp->pci.dev = dev;
 	sp->pci.ops = &dw_pcie_ops;
 
-	sp->phy = devm_of_phy_get(dev, np, NULL);
+	sp->phy = devm_phy_get(dev, "pcie_phy");
 	if (IS_ERR(sp->phy))
 		return PTR_ERR(sp->phy);