diff options
author | Archit Taneja <architt@codeaurora.org> | 2016-04-29 18:04:47 +0530 |
---|---|---|
committer | Rob Clark <robdclark@gmail.com> | 2016-07-16 10:08:47 -0400 |
commit | 69696ea041fa7bffb04d2141f6ec997c24cf09da (patch) | |
tree | 1e80c2da0fdb03c1a535936ce088daf0b04b5dcb /drivers/gpu/drm/msm/dsi | |
parent | b9ac76f6ac984158175f8928d10bc1a7038b699b (diff) | |
download | talos-op-linux-69696ea041fa7bffb04d2141f6ec997c24cf09da.tar.gz talos-op-linux-69696ea041fa7bffb04d2141f6ec997c24cf09da.zip |
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.c | 2 |
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) struct platform_device *phy_pdev; struct device_node *phy_node; - phy_node = of_parse_phandle(pdev->dev.of_node, "qcom,dsi-phy", 0); + phy_node = of_parse_phandle(pdev->dev.of_node, "phys", 0); if (!phy_node) { dev_err(&pdev->dev, "cannot find phy device\n"); return -ENXIO; |