Lines Matching refs:phy
67 struct phy **phy; member
327 struct phy **phy; in dra7xx_pcie_probe() local
363 phy = devm_kzalloc(dev, sizeof(*phy) * phy_count, GFP_KERNEL); in dra7xx_pcie_probe()
364 if (!phy) in dra7xx_pcie_probe()
369 phy[i] = devm_phy_get(dev, name); in dra7xx_pcie_probe()
370 if (IS_ERR(phy[i])) in dra7xx_pcie_probe()
371 return PTR_ERR(phy[i]); in dra7xx_pcie_probe()
373 ret = phy_init(phy[i]); in dra7xx_pcie_probe()
377 ret = phy_power_on(phy[i]); in dra7xx_pcie_probe()
379 phy_exit(phy[i]); in dra7xx_pcie_probe()
385 dra7xx->phy = phy; in dra7xx_pcie_probe()
414 phy_power_off(phy[i]); in dra7xx_pcie_probe()
415 phy_exit(phy[i]); in dra7xx_pcie_probe()
433 phy_power_off(dra7xx->phy[count]); in dra7xx_pcie_remove()
434 phy_exit(dra7xx->phy[count]); in dra7xx_pcie_remove()