]> Pileus Git - ~andy/linux/blobdiff - include/linux/of.h
Merge tag 'md/3.14' of git://neil.brown.name/md
[~andy/linux] / include / linux / of.h
index 276c546980d81fec5867a3126cc2bb73575ed769..70c64ba17fa51f7cca0e232b8f95b7669f5a3075 100644 (file)
@@ -377,8 +377,13 @@ static inline bool of_have_populated_dt(void)
        return false;
 }
 
+/* Kill an unused variable warning on a device_node pointer */
+static inline void __of_use_dn(const struct device_node *np)
+{
+}
+
 #define for_each_child_of_node(parent, child) \
-       while (0)
+       while (__of_use_dn(parent), __of_use_dn(child), 0)
 
 #define for_each_available_child_of_node(parent, child) \
        while (0)