From: Stephen Rothwell Date: Thu, 3 May 2007 05:19:05 +0000 (+1000) Subject: [POWERPC] iSeries: suppress build warning in lparmap.c X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8cf44080ebc372d4d0d2997a0c015add0afcd65d;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git [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 Signed-off-by: Paul Mackerras --- 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 #include -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,