Home
last modified time | relevance | path

Searched refs:phy_pdev (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/net/ethernet/amd/xgbe/
H A Dxgbe-platform.c226 struct platform_device *phy_pdev; in xgbe_of_get_phy_pdev() local
233 phy_pdev = of_find_device_by_node(phy_node); in xgbe_of_get_phy_pdev()
241 phy_pdev = pdata->platdev; in xgbe_of_get_phy_pdev()
244 return phy_pdev; in xgbe_of_get_phy_pdev()
281 struct platform_device *phy_pdev; in xgbe_get_phy_pdev() local
285 phy_pdev = pdata->platdev; in xgbe_get_phy_pdev()
287 phy_pdev = xgbe_of_get_phy_pdev(pdata); in xgbe_get_phy_pdev()
290 return phy_pdev; in xgbe_get_phy_pdev()
303 struct platform_device *phy_pdev; in xgbe_platform_probe() local
326 phy_pdev = xgbe_get_phy_pdev(pdata); in xgbe_platform_probe()
[all …]
/openbmc/linux/drivers/gpu/drm/msm/dsi/
H A Ddsi.c23 struct platform_device *phy_pdev; in dsi_get_phy() local
32 phy_pdev = of_find_device_by_node(phy_node); in dsi_get_phy()
33 if (phy_pdev) { in dsi_get_phy()
34 msm_dsi->phy = platform_get_drvdata(phy_pdev); in dsi_get_phy()
35 msm_dsi->phy_dev = &phy_pdev->dev; in dsi_get_phy()
40 if (!phy_pdev) { in dsi_get_phy()
45 put_device(&phy_pdev->dev); in dsi_get_phy()
/openbmc/linux/drivers/gpu/drm/msm/hdmi/
H A Dhdmi.c89 struct platform_device *phy_pdev; in msm_hdmi_get_phy() local
98 phy_pdev = of_find_device_by_node(phy_node); in msm_hdmi_get_phy()
101 if (!phy_pdev) in msm_hdmi_get_phy()
104 hdmi->phy = platform_get_drvdata(phy_pdev); in msm_hdmi_get_phy()
106 put_device(&phy_pdev->dev); in msm_hdmi_get_phy()
110 hdmi->phy_dev = &phy_pdev->dev; in msm_hdmi_get_phy()