diff options
author | Jan Beulich <JBeulich@suse.com> | 2012-03-08 04:41:25 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-13 11:14:06 -0400 |
commit | e601f243f04282ff17b173fb7c15e6d1c6e7252f (patch) | |
tree | 0b3b8578d2e735c7a0888a5320144ff89f17df40 | |
parent | 618f8985e7f0ff20f23660f3d1ebbe34fec0a996 (diff) |
modpost: fix ALL_INIT_DATA_SECTIONS
commit 9aaf440f8fabcebf9ea79a62ccf4c212e6544b49 upstream.
This was lacking a comma between two supposed to be separate strings.
Signed-off-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | scripts/mod/modpost.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 413c53693e6..33450bdd838 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
@@ -822,7 +822,7 @@ static void check_section(const char *modname, struct elf_info *elf, | |||
822 | 822 | ||
823 | #define ALL_INIT_DATA_SECTIONS \ | 823 | #define ALL_INIT_DATA_SECTIONS \ |
824 | ".init.setup$", ".init.rodata$", \ | 824 | ".init.setup$", ".init.rodata$", \ |
825 | ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$" \ | 825 | ".devinit.rodata$", ".cpuinit.rodata$", ".meminit.rodata$", \ |
826 | ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$" | 826 | ".init.data$", ".devinit.data$", ".cpuinit.data$", ".meminit.data$" |
827 | #define ALL_EXIT_DATA_SECTIONS \ | 827 | #define ALL_EXIT_DATA_SECTIONS \ |
828 | ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$" | 828 | ".exit.data$", ".devexit.data$", ".cpuexit.data$", ".memexit.data$" |