]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob - releases/2.6.36.2/arm-6456-1-fix-for-building-debug-with-sa11xx_base.c-as-a-module.patch
Remove duplicated commits
[thirdparty/kernel/stable-queue.git] / releases / 2.6.36.2 / arm-6456-1-fix-for-building-debug-with-sa11xx_base.c-as-a-module.patch
1 From b9f515e3e3861abbaa093359f7c6f31283695228 Mon Sep 17 00:00:00 2001
2 From: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
3 Date: Mon, 18 Oct 2010 22:38:08 +0100
4 Subject: ARM: 6456/1: Fix for building DEBUG with sa11xx_base.c as a module.
5
6 From: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
7
8 commit b9f515e3e3861abbaa093359f7c6f31283695228 upstream.
9
10 This patch fixes a compilation issue when compiling PCMCIA SA1100
11 support as a module with PCMCIA_DEBUG enabled. The symbol
12 soc_pcmcia_debug was not beeing exported.
13 ARM: pcmcia: Fix for building DEBUG with sa11xx_base.c as a module.
14
15 This patch fixes a compilation issue when compiling PCMCIA SA1100
16 support as a module with PCMCIA_DEBUG enabled. The symbol
17 soc_pcmcia_debug was not beeing exported.
18
19 Signed-off-by: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
20 Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
21 Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
22
23 ---
24 drivers/pcmcia/soc_common.c | 1 +
25 1 file changed, 1 insertion(+)
26
27 --- a/drivers/pcmcia/soc_common.c
28 +++ b/drivers/pcmcia/soc_common.c
29 @@ -65,6 +65,7 @@ void soc_pcmcia_debug(struct soc_pcmcia_
30 va_end(args);
31 }
32 }
33 +EXPORT_SYMBOL(soc_pcmcia_debug);
34
35 #endif
36