aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2007-05-03 15:19:05 +1000
committerPaul Mackerras <paulus@samba.org>2007-05-09 16:34:59 +1000
commit8cf44080ebc372d4d0d2997a0c015add0afcd65d (patch)
tree71c5137888af0492d438a59e6b98dfc957611842 /arch/powerpc
parent[POWERPC] Mark pages that don't exist as nosave (diff)
downloadlinux-dev-8cf44080ebc372d4d0d2997a0c015add0afcd65d.tar.xz
linux-dev-8cf44080ebc372d4d0d2997a0c015add0afcd65d.zip
[POWERPC] iSeries: suppress build warning in lparmap.c
lparmap.c: Assembler messages: lparmap.c:51: Warning: ignoring changed section attributes for .text Idea from Segher Boessenkool. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/lparmap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/lparmap.c b/arch/powerpc/kernel/lparmap.c
index 584d1e3c013d..af11285ffbd1 100644
--- a/arch/powerpc/kernel/lparmap.c
+++ b/arch/powerpc/kernel/lparmap.c
@@ -10,7 +10,8 @@
#include <asm/pgtable.h>
#include <asm/iseries/lpar_map.h>
-const struct LparMap __attribute__((__section__(".text"))) xLparMap = {
+/* The # is to stop gcc trying to make .text nonexecutable */
+const struct LparMap __attribute__((__section__(".text #"))) xLparMap = {
.xNumberEsids = HvEsidsToMap,
.xNumberRanges = HvRangesToMap,
.xSegmentTableOffs = STAB0_PAGE,