提交 90e3bc79 编写于 作者: W Wei Yongjun 提交者: Chris Zankel

Use for_each_compatible_node() macro.

Signed-off-by: NWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: NMax Filippov <jcmvbkbc@gmail.com>
Signed-off-by: NChris Zankel <chris@zankel.net>
上级 5584b4da
......@@ -105,9 +105,9 @@ static void __init update_clock_frequency(struct device_node *node)
static int __init machine_setup(void)
{
struct device_node *serial = NULL;
struct device_node *serial;
while ((serial = of_find_compatible_node(serial, NULL, "ns16550a")))
for_each_compatible_node(serial, NULL, "ns16550a")
update_clock_frequency(serial);
return 0;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册