diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2013-10-28 14:12:35 -0400 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-11-03 14:39:58 -0500 |
commit | f6f0747e5bc69401d7f90313aa1b46709d27840a (patch) | |
tree | 77d5671eb7f533fec901edf6685db8624eb43cda | |
parent | 5116b1defad7cec648384c2d1bc0b7460d305c93 (diff) |
of: Add empty for_each_available_child_of_node() macro definition
Add this empty macro definition so users can be compiled without
excluding this macro call with preprocessor directives when CONFIG_OF
is disabled.
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
-rw-r--r-- | include/linux/of.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index 54017b83650b..b97f685c941f 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
@@ -366,6 +366,9 @@ static inline bool of_have_populated_dt(void) | |||
366 | #define for_each_child_of_node(parent, child) \ | 366 | #define for_each_child_of_node(parent, child) \ |
367 | while (0) | 367 | while (0) |
368 | 368 | ||
369 | #define for_each_available_child_of_node(parent, child) \ | ||
370 | while (0) | ||
371 | |||
369 | static inline struct device_node *of_get_child_by_name( | 372 | static inline struct device_node *of_get_child_by_name( |
370 | const struct device_node *node, | 373 | const struct device_node *node, |
371 | const char *name) | 374 | const char *name) |