]> git.karo-electronics.de Git - linux-beck.git/commitdiff
powerpc/celleb: Use for_each_compatible_node() macro
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 3 Dec 2012 19:17:01 +0000 (19:17 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 10 Jan 2013 06:00:48 +0000 (17:00 +1100)
Use for_each_compatible_node() macro instead of open coding it.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/platforms/cell/celleb_scc_sio.c

index 3a16c5b3c46449fed01aa4db4678b25d902a7540..9c339ec646f5543aa355362a952581fd74fe745a 100644 (file)
@@ -42,14 +42,13 @@ static struct {
 static int __init txx9_serial_init(void)
 {
        extern int early_serial_txx9_setup(struct uart_port *port);
-       struct device_node *node = NULL;
+       struct device_node *node;
        int i;
        struct uart_port req;
        struct of_irq irq;
        struct resource res;
 
-       while ((node = of_find_compatible_node(node,
-                               "serial", "toshiba,sio-scc")) != NULL) {
+       for_each_compatible_node(node, "serial", "toshiba,sio-scc") {
                for (i = 0; i < ARRAY_SIZE(txx9_scc_tab); i++) {
                        if (!(txx9_serial_bitmap & (1<<i)))
                                continue;