[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <4F588CD50200007800077112@nat28.tlf.novell.com>
Date: Thu, 08 Mar 2012 09:41:25 +0000
From: "Jan Beulich" <JBeulich@...e.com>
To: <rusty@...tcorp.com.au>, "Michal Marek" <mmarek@...e.cz>
Cc: <linux-kbuild@...r.kernel.org>, <linux-kernel@...r.kernel.org>
Subject: [PATCH] modpost: fix ALL_INIT_DATA_SECTIONS
This was lacking a comma between two supposed to be separate strings.
Signed-off-by: Jan Beulich <jbeulich@...e.com>
---
scripts/mod/modpost.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- 3.3-rc6/scripts/mod/modpost.c
+++ 3.3-rc6-modpost-all-init-data/scripts/mod/modpost.c
@@ -849,7 +849,7 @@ static void check_section(const char *mo
#define ALL_INIT_DATA_SECTIONS \
".init.setup$", ".init.rodata$", \
- ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$" \
+ ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$", \
".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$"
#define ALL_EXIT_DATA_SECTIONS \
".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$"
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists