diff options
Diffstat (limited to 'include/asm-ppc')
-rw-r--r-- | include/asm-ppc/prom.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-ppc/prom.h b/include/asm-ppc/prom.h index 3e39827ed566..a10a2d64b300 100644 --- a/include/asm-ppc/prom.h +++ b/include/asm-ppc/prom.h | |||
@@ -136,5 +136,15 @@ extern unsigned long sub_reloc_offset(unsigned long); | |||
136 | #define PTRRELOC(x) ((typeof(x))add_reloc_offset((unsigned long)(x))) | 136 | #define PTRRELOC(x) ((typeof(x))add_reloc_offset((unsigned long)(x))) |
137 | #define PTRUNRELOC(x) ((typeof(x))sub_reloc_offset((unsigned long)(x))) | 137 | #define PTRUNRELOC(x) ((typeof(x))sub_reloc_offset((unsigned long)(x))) |
138 | 138 | ||
139 | |||
140 | /* | ||
141 | * Address translation function(s) | ||
142 | */ | ||
143 | #define OF_BAD_ADDR ((u64)-1) | ||
144 | extern u64 of_translate_address(struct device_node *np, u32 *addr); | ||
145 | extern u32 *of_get_address(struct device_node *dev, int index, u64 *size); | ||
146 | extern u32 *of_get_pci_address(struct device_node *dev, int bar_no, u64 *size); | ||
147 | |||
148 | |||
139 | #endif /* _PPC_PROM_H */ | 149 | #endif /* _PPC_PROM_H */ |
140 | #endif /* __KERNEL__ */ | 150 | #endif /* __KERNEL__ */ |