diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2012-12-04 00:16:18 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-16 02:00:43 -0500 |
commit | 074d35cebe96da07ac07f78118bc6a09e60350b5 (patch) | |
tree | a0852a3801d7b789845d4e2e2720644818f47bca /drivers/tty/hvc | |
parent | 463dcc42e4832150eb3de804682b924f9b73a91a (diff) |
TTY: hvsi: use for_each_compatible_node() macro
Use for_each_compatible_node() macro instead of open coding it.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Grant Likely <grant.likely@secretlab.ca>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/hvc')
-rw-r--r-- | drivers/tty/hvc/hvsi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/tty/hvc/hvsi.c b/drivers/tty/hvc/hvsi.c index dc591290120b..ef95a154854a 100644 --- a/drivers/tty/hvc/hvsi.c +++ b/drivers/tty/hvc/hvsi.c | |||
@@ -1183,9 +1183,7 @@ static int __init hvsi_console_init(void) | |||
1183 | hvsi_wait = poll_for_state; /* no irqs yet; must poll */ | 1183 | hvsi_wait = poll_for_state; /* no irqs yet; must poll */ |
1184 | 1184 | ||
1185 | /* search device tree for vty nodes */ | 1185 | /* search device tree for vty nodes */ |
1186 | for (vty = of_find_compatible_node(NULL, "serial", "hvterm-protocol"); | 1186 | for_each_compatible_node(vty, "serial", "hvterm-protocol") { |
1187 | vty != NULL; | ||
1188 | vty = of_find_compatible_node(vty, "serial", "hvterm-protocol")) { | ||
1189 | struct hvsi_struct *hp; | 1187 | struct hvsi_struct *hp; |
1190 | const uint32_t *vtermno, *irq; | 1188 | const uint32_t *vtermno, *irq; |
1191 | 1189 | ||