Skip to content

Commit

Permalink
of: introduce of_get_available_child_count
Browse files Browse the repository at this point in the history
Some drivers keep counting available child by themselves. So
introduce a new simple API like of_get_child_count() but for
available childs.

Cc: Josh Wu <josh.wu@atmel.com>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
Acked-by: Rob Herring <rob.herring@calxeda.com>
  • Loading branch information
Bryan Wu committed Oct 25, 2013
1 parent bb6febd commit 954e04b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions include/linux/of.h
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,17 @@ static inline int of_get_child_count(const struct device_node *np)
return num;
}

static inline int of_get_available_child_count(const struct device_node *np)
{
struct device_node *child;
int num = 0;

for_each_available_child_of_node(np, child)
num++;

return num;
}

extern struct device_node *of_find_node_with_property(
struct device_node *from, const char *prop_name);
#define for_each_node_with_property(dn, prop_name) \
Expand Down Expand Up @@ -376,6 +387,11 @@ static inline int of_get_child_count(const struct device_node *np)
return 0;
}

static inline int of_get_available_child_count(const struct device_node *np)
{
return 0;
}

static inline int of_device_is_compatible(const struct device_node *device,
const char *name)
{
Expand Down

0 comments on commit 954e04b

Please sign in to comment.