aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/sections.h
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@pobox.com>2005-11-04 21:39:31 -0500
committerJeff Garzik <jgarzik@pobox.com>2005-11-04 21:39:31 -0500
commitc2cc87ca9561ddfe744d446789cc10f507e87db9 (patch)
treed505fc0110eb1a3d8750ba2f67648c131f0d9aca /include/asm-powerpc/sections.h
parentce1eeb95fc4eb25109c00bea3e83a87eeff6b07d (diff)
parent7015faa7df829876a0f931cd18aa6d7c24a1b581 (diff)
Merge branch 'master'
Diffstat (limited to 'include/asm-powerpc/sections.h')
-rw-r--r--include/asm-powerpc/sections.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/asm-powerpc/sections.h b/include/asm-powerpc/sections.h
new file mode 100644
index 000000000000..47be2ac2a925
--- /dev/null
+++ b/include/asm-powerpc/sections.h
@@ -0,0 +1,20 @@
1#ifndef _ASM_POWERPC_SECTIONS_H
2#define _ASM_POWERPC_SECTIONS_H
3
4#include <asm-generic/sections.h>
5
6#ifdef __powerpc64__
7
8extern char _end[];
9
10static inline int in_kernel_text(unsigned long addr)
11{
12 if (addr >= (unsigned long)_stext && addr < (unsigned long)__init_end)
13 return 1;
14
15 return 0;
16}
17
18#endif
19
20#endif /* _ASM_POWERPC_SECTIONS_H */