diff options
author | Philipp Zabel <p.zabel@pengutronix.de> | 2014-07-03 16:59:51 -0400 |
---|---|---|
committer | Philipp Zabel <p.zabel@pengutronix.de> | 2015-04-08 05:14:25 -0400 |
commit | 7416f4e33b5e924baa030ddab1f261a0a85fa32e (patch) | |
tree | 413aa5ce065483e6d7529b66a9043e2418785033 | |
parent | 01218bf14ee60d4a2d6c667ebdbba3ae9a7a1d66 (diff) |
drm: use for_each_endpoint_of_node macro in drm_of_find_possible_crtcs
Using the for_each_... macro should make the code a bit shorter and
easier to read.
Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
-rw-r--r-- | drivers/gpu/drm/drm_of.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/drivers/gpu/drm/drm_of.c b/drivers/gpu/drm/drm_of.c index 16150a00c237..aaa130736bf8 100644 --- a/drivers/gpu/drm/drm_of.c +++ b/drivers/gpu/drm/drm_of.c | |||
@@ -43,14 +43,10 @@ static uint32_t drm_crtc_port_mask(struct drm_device *dev, | |||
43 | uint32_t drm_of_find_possible_crtcs(struct drm_device *dev, | 43 | uint32_t drm_of_find_possible_crtcs(struct drm_device *dev, |
44 | struct device_node *port) | 44 | struct device_node *port) |
45 | { | 45 | { |
46 | struct device_node *remote_port, *ep = NULL; | 46 | struct device_node *remote_port, *ep; |
47 | uint32_t possible_crtcs = 0; | 47 | uint32_t possible_crtcs = 0; |
48 | 48 | ||
49 | do { | 49 | for_each_endpoint_of_node(port, ep) { |
50 | ep = of_graph_get_next_endpoint(port, ep); | ||
51 | if (!ep) | ||
52 | break; | ||
53 | |||
54 | remote_port = of_graph_get_remote_port(ep); | 50 | remote_port = of_graph_get_remote_port(ep); |
55 | if (!remote_port) { | 51 | if (!remote_port) { |
56 | of_node_put(ep); | 52 | of_node_put(ep); |
@@ -60,7 +56,7 @@ uint32_t drm_of_find_possible_crtcs(struct drm_device *dev, | |||
60 | possible_crtcs |= drm_crtc_port_mask(dev, remote_port); | 56 | possible_crtcs |= drm_crtc_port_mask(dev, remote_port); |
61 | 57 | ||
62 | of_node_put(remote_port); | 58 | of_node_put(remote_port); |
63 | } while (1); | 59 | } |
64 | 60 | ||
65 | return possible_crtcs; | 61 | return possible_crtcs; |
66 | } | 62 | } |