RT-AC66 3.0.0.4.374.130 core
[tomato.git] / release / src-rt-6.x / linux / linux-2.6 / include / asm-powerpc / sections.h
blob916018e425c4dc7112f6c0c1f49f884118d4bd0b
1 #ifndef _ASM_POWERPC_SECTIONS_H
2 #define _ASM_POWERPC_SECTIONS_H
3 #ifdef __KERNEL__
5 #include <asm-generic/sections.h>
7 #ifdef __powerpc64__
9 extern char _end[];
11 static inline int in_kernel_text(unsigned long addr)
13 if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
14 return 1;
16 return 0;
19 #endif
21 #endif /* __KERNEL__ */
22 #endif /* _ASM_POWERPC_SECTIONS_H */