diff options
| author | Olof Johansson <olof@lixom.net> | 2012-09-05 15:35:48 -0700 | 
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2012-09-05 15:35:48 -0700 | 
| commit | 1875962377574b4edb7b164001e3e341c25290d5 (patch) | |
| tree | 374a5299403ec21e2d9a66a6548ce876a388b589 /include/linux/of.h | |
| parent | 5cbee140a28c2746449ae31e85738043ae4da927 (diff) | |
| parent | c88a79a7789b2909ad1cf69ea2c9142030bbd6f4 (diff) | |
| download | olio-linux-3.10-1875962377574b4edb7b164001e3e341c25290d5.tar.xz olio-linux-3.10-1875962377574b4edb7b164001e3e341c25290d5.zip  | |
Merge branch 'soc-core' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas into next/dt
* 'soc-core' of git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas:
  ARM: mach-shmobile: Add compilation support for dtbs using 'make dtbs'
  + sync to 3.6-rc3
Diffstat (limited to 'include/linux/of.h')
| -rw-r--r-- | include/linux/of.h | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index 5919ee33f2b..1b1163225f3 100644 --- a/include/linux/of.h +++ b/include/linux/of.h @@ -190,10 +190,17 @@ extern struct device_node *of_get_parent(const struct device_node *node);  extern struct device_node *of_get_next_parent(struct device_node *node);  extern struct device_node *of_get_next_child(const struct device_node *node,  					     struct device_node *prev); +extern struct device_node *of_get_next_available_child( +	const struct device_node *node, struct device_node *prev); +  #define for_each_child_of_node(parent, child) \  	for (child = of_get_next_child(parent, NULL); child != NULL; \  	     child = of_get_next_child(parent, child)) +#define for_each_available_child_of_node(parent, child) \ +	for (child = of_get_next_available_child(parent, NULL); child != NULL; \ +	     child = of_get_next_available_child(parent, child)) +  static inline int of_get_child_count(const struct device_node *np)  {  	struct device_node *child;  |