From f8a1e2a5fd0f706df276175f29fc29b2846ffd3f Mon Sep 17 00:00:00 2001 From: Sebastian Hesselbarth Date: Thu, 13 Jun 2013 19:39:14 +0200 Subject: [PATCH] OF: base: import of_find_node_by_name from Linux OF API This imports of_find_node_by_name and corresponding for_each_node_by_name helper from Linux OF API. Signed-off-by: Sebastian Hesselbarth --- drivers/of/base.c | 26 ++++++++++++++++++++++++++ include/of.h | 12 ++++++++++++ 2 files changed, 38 insertions(+) diff --git a/drivers/of/base.c b/drivers/of/base.c index ec91f6843..febfdfe6f 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -311,6 +311,32 @@ int of_device_is_compatible(const struct device_node *device, } EXPORT_SYMBOL(of_device_is_compatible); +/** + * of_find_node_by_name - Find a node by its "name" property + * @from: The node to start searching from or NULL, the node + * you pass will not be searched, only the next one + * will; typically, you pass what the previous call + * returned. + * @name: The name string to match against + * + * Returns a pointer to the node found or NULL. + */ +struct device_node *of_find_node_by_name(struct device_node *from, + const char *name) +{ + struct device_node *np; + + if (!from) + from = root_node; + + of_tree_for_each_node(np, from) + if (np->name && !of_node_cmp(np->name, name)) + return np; + + return NULL; +} +EXPORT_SYMBOL(of_find_node_by_name); + /** * of_match_node - Tell if an device_node has a matching of_match structure * @matches: array of of device match structures to search in diff --git a/include/of.h b/include/of.h index 56b7be14c..8cbfe7abe 100644 --- a/include/of.h +++ b/include/of.h @@ -182,6 +182,8 @@ struct cdev; extern struct property *of_find_property(const struct device_node *np, const char *name, int *lenp); +extern struct device_node *of_find_node_by_name(struct device_node *from, + const char *name); extern struct device_node *of_find_node_by_path_from(struct device_node *from, const char *path); extern struct device_node *of_find_node_by_path(const char *path); @@ -249,6 +251,12 @@ static inline struct device_node *of_find_node_by_path(const char *path) return NULL; } +static inline struct device_node *of_find_node_by_name(struct device_node *from, + const char *name) +{ + return NULL; +} + static inline int of_device_is_available(const struct device_node *device) { return 0; @@ -269,4 +277,8 @@ static inline const char *of_alias_get(struct device_node *np) } #endif +#define for_each_node_by_name(dn, name) \ + for (dn = of_find_node_by_name(NULL, name); dn; \ + dn = of_find_node_by_name(dn, name)) + #endif /* __OF_H */