mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-07-17 06:48:07 +00:00
1af87d9126
3.2.16 is the final release in the 3.2-stable series by Greg KH. Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
33 lines
1.2 KiB
Diff
33 lines
1.2 KiB
Diff
From 3d588be49327372d7c61bcf5e1c691031ecee200 Mon Sep 17 00:00:00 2001
|
|
From: Jan Beulich <JBeulich@suse.com>
|
|
Date: Thu, 8 Mar 2012 09:41:25 +0000
|
|
Subject: [PATCH 18/60] 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>
|
|
---
|
|
scripts/mod/modpost.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
|
|
index 2bd594e..159b4cc 100644
|
|
--- a/scripts/mod/modpost.c
|
|
+++ b/scripts/mod/modpost.c
|
|
@@ -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$"
|
|
--
|
|
1.7.9.5
|
|
|