Merge branch 'mini2440-dev-unlikely' into mini2440-dev
[linux-2.6/mini2440.git] / arch / powerpc / include / asm / sections.h
blob6fbce725c710f97453079205e190c02c7365cd0b
1 #ifndef _ASM_POWERPC_SECTIONS_H
2 #define _ASM_POWERPC_SECTIONS_H
3 #ifdef __KERNEL__
5 #include <linux/elf.h>
6 #include <linux/uaccess.h>
7 #include <asm-generic/sections.h>
9 #ifdef __powerpc64__
11 extern char _end[];
13 static inline int in_kernel_text(unsigned long addr)
15 if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
16 return 1;
18 return 0;
21 static inline int overlaps_kernel_text(unsigned long start, unsigned long end)
23 return start < (unsigned long)__init_end &&
24 (unsigned long)_stext < end;
27 #undef dereference_function_descriptor
28 static inline void *dereference_function_descriptor(void *ptr)
30 struct ppc64_opd_entry *desc = ptr;
31 void *p;
33 if (!probe_kernel_address(&desc->funcaddr, p))
34 ptr = p;
35 return ptr;
38 #endif
40 #endif /* __KERNEL__ */
41 #endif /* _ASM_POWERPC_SECTIONS_H */