diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-04-24 03:16:16 -0400 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2007-07-19 23:32:58 -0400 |
commit | e679c5f445fe142940e0962de9c5c82f10d9357c (patch) | |
tree | 997daf76cc643fdc495ce0a667cfdc5b1c9515ab /include/asm-sparc64 | |
parent | 581b605a83ec241a2aff8ef780e08b9414c8dfd8 (diff) |
Consolidate of_get_parent
This requires creating dummy of_node_{get,put} routines for sparc and
sparc64. It also adds a read_lock around the parent accesses.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Acked-by: Paul Mackerras <paulus@samba.org>
Acked-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/asm-sparc64')
-rw-r--r-- | include/asm-sparc64/prom.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-sparc64/prom.h b/include/asm-sparc64/prom.h index 6a5e2405cbf4..e83896f3c141 100644 --- a/include/asm-sparc64/prom.h +++ b/include/asm-sparc64/prom.h | |||
@@ -78,6 +78,15 @@ extern int of_getintprop_default(struct device_node *np, | |||
78 | 78 | ||
79 | extern void prom_build_devicetree(void); | 79 | extern void prom_build_devicetree(void); |
80 | 80 | ||
81 | /* Dummy ref counting routines - to be implemented later */ | ||
82 | static inline struct device_node *of_node_get(struct device_node *node) | ||
83 | { | ||
84 | return node; | ||
85 | } | ||
86 | static inline void of_node_put(struct device_node *node) | ||
87 | { | ||
88 | } | ||
89 | |||
81 | /* | 90 | /* |
82 | * NB: This is here while we transition from using asm/prom.h | 91 | * NB: This is here while we transition from using asm/prom.h |
83 | * to linux/of.h | 92 | * to linux/of.h |