Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/net/ethernet/amd/xgbe/
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 …]
/linux-5.19.10/drivers/gpu/drm/msm/dsi/
Ddsi.c32 struct platform_device *phy_pdev; in dsi_get_phy() local
41 phy_pdev = of_find_device_by_node(phy_node); in dsi_get_phy()
42 if (phy_pdev) { in dsi_get_phy()
43 msm_dsi->phy = platform_get_drvdata(phy_pdev); in dsi_get_phy()
44 msm_dsi->phy_dev = &phy_pdev->dev; in dsi_get_phy()
49 if (!phy_pdev) { in dsi_get_phy()
54 put_device(&phy_pdev->dev); in dsi_get_phy()
/linux-5.19.10/drivers/gpu/drm/msm/hdmi/
Dhdmi.c85 struct platform_device *phy_pdev; in msm_hdmi_get_phy() local
94 phy_pdev = of_find_device_by_node(phy_node); in msm_hdmi_get_phy()
95 if (phy_pdev) in msm_hdmi_get_phy()
96 hdmi->phy = platform_get_drvdata(phy_pdev); in msm_hdmi_get_phy()
100 if (!phy_pdev) { in msm_hdmi_get_phy()
106 put_device(&phy_pdev->dev); in msm_hdmi_get_phy()
110 hdmi->phy_dev = get_device(&phy_pdev->dev); in msm_hdmi_get_phy()