diff options
author | Rob Herring <rob.herring@calxeda.com> | 2013-09-17 11:42:50 -0400 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2013-10-09 21:04:07 -0400 |
commit | 0c3f061c195ceb891067b6de9e4ecc347c4dea31 (patch) | |
tree | a576f97862dc34377dd55734bff47da6bb7603c7 /include/linux/of.h | |
parent | 25ff79443cbfa924b8df1d4a8a0fbff83816938a (diff) |
of: implement of_node_to_nid as a weak function
Implement of_node_to_nid as weak function to remove the dependency on
asm/prom.h. This is in preparation to make prom.h optional.
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Acked-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'include/linux/of.h')
-rw-r--r-- | include/linux/of.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/linux/of.h b/include/linux/of.h index f95aee391e30..4d294a0b8a57 100644 --- a/include/linux/of.h +++ b/include/linux/of.h | |||
@@ -534,13 +534,10 @@ static inline const char *of_prop_next_string(struct property *prop, | |||
534 | #define of_match_node(_matches, _node) NULL | 534 | #define of_match_node(_matches, _node) NULL |
535 | #endif /* CONFIG_OF */ | 535 | #endif /* CONFIG_OF */ |
536 | 536 | ||
537 | #ifndef of_node_to_nid | 537 | #if defined(CONFIG_OF) && defined(CONFIG_NUMA) |
538 | static inline int of_node_to_nid(struct device_node *np) | 538 | extern int of_node_to_nid(struct device_node *np); |
539 | { | 539 | #else |
540 | return numa_node_id(); | 540 | static inline int of_node_to_nid(struct device_node *device) { return 0; } |
541 | } | ||
542 | |||
543 | #define of_node_to_nid of_node_to_nid | ||
544 | #endif | 541 | #endif |
545 | 542 | ||
546 | /** | 543 | /** |