diff options
| author | Leif Lindholm <leif.lindholm@linaro.org> | 2014-11-28 06:34:28 -0500 |
|---|---|---|
| committer | Grant Likely <grant.likely@linaro.org> | 2014-12-03 18:12:36 -0500 |
| commit | 75c28c09af99a0db0ccd8b4395469761aa736543 (patch) | |
| tree | df35296e1dc01e57203f0d6522918e48d636fdba /include/linux | |
| parent | 2a9d832cc9aae21ea827520fef635b6c49a06c6d (diff) | |
of: add optional options parameter to of_find_node_by_path()
Update of_find_node_by_path():
1) Rename function to of_find_node_opts_by_path(), adding an optional
pointer argument. Provide a static inline wrapper version of
of_find_node_by_path() which calls the new function with NULL as
the optional argument.
2) Ignore any part of the path beyond and including the ':' separator.
3) Set the new provided pointer argument to the beginning of the string
following the ':' separator.
4: Add tests.
Signed-off-by: Leif Lindholm <leif.lindholm@linaro.org>
Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/of.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index aa01cf5852f8..8b021db3e16e 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
| @@ -236,7 +236,13 @@ extern struct device_node *of_find_matching_node_and_match( | |||
| 236 | const struct of_device_id *matches, | 236 | const struct of_device_id *matches, |
| 237 | const struct of_device_id **match); | 237 | const struct of_device_id **match); |
| 238 | 238 | ||
| 239 | extern struct device_node *of_find_node_by_path(const char *path); | 239 | extern struct device_node *of_find_node_opts_by_path(const char *path, |
| 240 | const char **opts); | ||
| 241 | static inline struct device_node *of_find_node_by_path(const char *path) | ||
| 242 | { | ||
| 243 | return of_find_node_opts_by_path(path, NULL); | ||
| 244 | } | ||
| 245 | |||
| 240 | extern struct device_node *of_find_node_by_phandle(phandle handle); | 246 | extern struct device_node *of_find_node_by_phandle(phandle handle); |
| 241 | extern struct device_node *of_get_parent(const struct device_node *node); | 247 | extern struct device_node *of_get_parent(const struct device_node *node); |
| 242 | extern struct device_node *of_get_next_parent(struct device_node *node); | 248 | extern struct device_node *of_get_next_parent(struct device_node *node); |
| @@ -383,6 +389,12 @@ static inline struct device_node *of_find_node_by_path(const char *path) | |||
| 383 | return NULL; | 389 | return NULL; |
| 384 | } | 390 | } |
| 385 | 391 | ||
| 392 | static inline struct device_node *of_find_node_opts_by_path(const char *path, | ||
| 393 | const char **opts) | ||
| 394 | { | ||
| 395 | return NULL; | ||
| 396 | } | ||
| 397 | |||
| 386 | static inline struct device_node *of_get_parent(const struct device_node *node) | 398 | static inline struct device_node *of_get_parent(const struct device_node *node) |
| 387 | { | 399 | { |
| 388 | return NULL; | 400 | return NULL; |
