mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 15:42:46 +00:00
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>
This commit is contained in:
parent
463dcc42e4
commit
074d35cebe
1 changed files with 1 additions and 3 deletions
|
@ -1183,9 +1183,7 @@ static int __init hvsi_console_init(void)
|
||||||
hvsi_wait = poll_for_state; /* no irqs yet; must poll */
|
hvsi_wait = poll_for_state; /* no irqs yet; must poll */
|
||||||
|
|
||||||
/* search device tree for vty nodes */
|
/* search device tree for vty nodes */
|
||||||
for (vty = of_find_compatible_node(NULL, "serial", "hvterm-protocol");
|
for_each_compatible_node(vty, "serial", "hvterm-protocol") {
|
||||||
vty != NULL;
|
|
||||||
vty = of_find_compatible_node(vty, "serial", "hvterm-protocol")) {
|
|
||||||
struct hvsi_struct *hp;
|
struct hvsi_struct *hp;
|
||||||
const uint32_t *vtermno, *irq;
|
const uint32_t *vtermno, *irq;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue