aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/msm/dsi
diff options
context:
space:
mode:
authorArchit Taneja <architt@codeaurora.org>2016-04-29 08:34:47 -0400
committerRob Clark <robdclark@gmail.com>2016-07-16 10:08:47 -0400
commit69696ea041fa7bffb04d2141f6ec997c24cf09da (patch)
tree1e80c2da0fdb03c1a535936ce088daf0b04b5dcb /drivers/gpu/drm/msm/dsi
parentb9ac76f6ac984158175f8928d10bc1a7038b699b (diff)
drm/msm/dsi: Use generic PHY bindings
The DSI host links to the DSI PHY device using a custom binding. Switch to the generic PHY bindings. The DSI PHY driver itself doesn't use the common PHY framework for now. Signed-off-by: Archit Taneja <architt@codeaurora.org> Signed-off-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/msm/dsi')
-rw-r--r--drivers/gpu/drm/msm/dsi/dsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/msm/dsi/dsi.c b/drivers/gpu/drm/msm/dsi/dsi.c
index 6edcd6f57e70..ec572f8389ed 100644
--- a/drivers/gpu/drm/msm/dsi/dsi.c
+++ b/drivers/gpu/drm/msm/dsi/dsi.c
@@ -29,7 +29,7 @@ static int dsi_get_phy(struct msm_dsi *msm_dsi)
29 struct platform_device *phy_pdev; 29 struct platform_device *phy_pdev;
30 struct device_node *phy_node; 30 struct device_node *phy_node;
31 31
32 phy_node = of_parse_phandle(pdev->dev.of_node, "qcom,dsi-phy", 0); 32 phy_node = of_parse_phandle(pdev->dev.of_node, "phys", 0);
33 if (!phy_node) { 33 if (!phy_node) {
34 dev_err(&pdev->dev, "cannot find phy device\n"); 34 dev_err(&pdev->dev, "cannot find phy device\n");
35 return -ENXIO; 35 return -ENXIO;