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

From: Shradha Todi
Date: Tue Feb 14 2023 - 09:21:22 EST


Replace devm_of_phy_get with devm_phy_get to get the
PHY pointer.

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

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);

--
2.17.1