Skip to content

Commit

Permalink
modpost: fix ALL_INIT_DATA_SECTIONS
Browse files Browse the repository at this point in the history
This was lacking a comma between two supposed to be separate strings.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Michal Marek <mmarek@suse.cz>
  • Loading branch information
Jan Beulich authored and Michal Marek committed Mar 26, 2012
1 parent e339364 commit 9aaf440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mod/modpost.c
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ static void check_section(const char *modname, struct elf_info *elf,

#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$"
Expand Down

0 comments on commit 9aaf440

Please sign in to comment.