diff options
author | Dave Airlie <airlied@redhat.com> | 2017-08-25 02:30:54 +0300 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2017-08-25 02:30:54 +0300 |
commit | e47ef3029ba14e7c2d2cfc7823d042f6f1bb94a2 (patch) | |
tree | 8a6da43edde5215aa1ed66927f111e9acfc992e9 /drivers/gpu | |
parent | 72d45a76039ba5635b989fdcb4e07739a3bde926 (diff) | |
parent | 0bd46d703e0892c6519132c012910982e3e65535 (diff) | |
download | linux-e47ef3029ba14e7c2d2cfc7823d042f6f1bb94a2.tar.xz |
Merge tag 'sunxi-drm-for-4.14-2' of https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux into drm-next
sun4i DRM changes for 4.14, take 2
A single patch switching to a new OF helper.
* tag 'sunxi-drm-for-4.14-2' of https://git.kernel.org/pub/scm/linux/kernel/git/mripard/linux:
drm/sun4i: use of_graph_get_remote_endpoint()
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/drm/sun4i/sun4i_backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sun4i/sun4i_backend.c b/drivers/gpu/drm/sun4i/sun4i_backend.c index cf480218daa5..ec5943627aa5 100644 --- a/drivers/gpu/drm/sun4i/sun4i_backend.c +++ b/drivers/gpu/drm/sun4i/sun4i_backend.c @@ -312,7 +312,7 @@ static int sun4i_backend_of_get_id(struct device_node *node) struct device_node *remote; u32 reg; - remote = of_parse_phandle(ep, "remote-endpoint", 0); + remote = of_graph_get_remote_endpoint(ep); if (!remote) continue; |