]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blame - releases/2.6.36.2/arm-6456-1-fix-for-building-debug-with-sa11xx_base.c-as-a-module.patch
Fixes for 5.10
[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
CommitLineData
bcd4f083
GKH
1From b9f515e3e3861abbaa093359f7c6f31283695228 Mon Sep 17 00:00:00 2001
2From: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
3Date: Mon, 18 Oct 2010 22:38:08 +0100
4Subject: ARM: 6456/1: Fix for building DEBUG with sa11xx_base.c as a module.
5
6From: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
7
8commit b9f515e3e3861abbaa093359f7c6f31283695228 upstream.
9
10This patch fixes a compilation issue when compiling PCMCIA SA1100
11support as a module with PCMCIA_DEBUG enabled. The symbol
12soc_pcmcia_debug was not beeing exported.
13ARM: pcmcia: Fix for building DEBUG with sa11xx_base.c as a module.
14
15This patch fixes a compilation issue when compiling PCMCIA SA1100
16support as a module with PCMCIA_DEBUG enabled. The symbol
17soc_pcmcia_debug was not beeing exported.
18
19Signed-off-by: Marcelo Roberto Jimenez <mroberto@cpti.cetuc.puc-rio.br>
20Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
21Signed-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