diff options
author | Stephen Rothwell | 2007-04-03 02:54:01 +0200 |
---|---|---|
committer | Paul Mackerras | 2007-04-12 19:55:17 +0200 |
commit | 0e56efc7dcd1eb5004363e52bdbe801783245638 (patch) | |
tree | 22b3f52d1ccc18d0e820ed69412a8054e20798d1 /include/asm-ppc | |
parent | [POWERPC] get_property returns const (diff) | |
download | kernel-qcow2-linux-0e56efc7dcd1eb5004363e52bdbe801783245638.tar.gz kernel-qcow2-linux-0e56efc7dcd1eb5004363e52bdbe801783245638.tar.xz kernel-qcow2-linux-0e56efc7dcd1eb5004363e52bdbe801783245638.zip |
[POWERPC] Rename get_property to of_get_property
This is more consistent and gets us closer to the Sparc code.
We add a get_property define for compatibility during the change over.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/prom.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-ppc/prom.h b/include/asm-ppc/prom.h index adc5ae784924..901f7fa8b2d7 100644 --- a/include/asm-ppc/prom.h +++ b/include/asm-ppc/prom.h @@ -34,7 +34,8 @@ extern unsigned long sub_reloc_offset(unsigned long); */ #define machine_is_compatible(x) 0 #define of_find_compatible_node(f, t, c) NULL -#define get_property(p, n, l) NULL +#define of_get_property(p, n, l) NULL +#define get_property(a, b, c) of_get_property((a), (b), (c)) #endif /* _PPC_PROM_H */ #endif /* __KERNEL__ */ |