summaryrefslogtreecommitdiffstats
path: root/arch/mips/sgi-ip32
diff options
context:
space:
mode:
authorDmitri Vorobiev2009-11-23 12:53:37 +0100
committerRalf Baechle2009-12-17 02:57:27 +0100
commit599a89459f316499446fdb5c817a0a4835681bae (patch)
tree342f276b475b5c1fcdada4573ea704a009a9dc47 /arch/mips/sgi-ip32
parentMIPS: Tracing: Make function graph tracer work with -mmcount-ra-address (diff)
downloadkernel-qcow2-linux-599a89459f316499446fdb5c817a0a4835681bae.tar.gz
kernel-qcow2-linux-599a89459f316499446fdb5c817a0a4835681bae.tar.xz
kernel-qcow2-linux-599a89459f316499446fdb5c817a0a4835681bae.zip
MIPS: Move several variables from .bss to .init.data
Several static uninitialized variables are used in the scope of __init functions but are themselves not marked as __initdata. This patch is to put those variables to where they belong and to reduce the memory footprint a little bit. Also, a couple of lines with spaces instead of tabs were fixed. Signed-off-by: Dmitri Vorobiev <dmitri.vorobiev@movial.com> Cc: linux-mips@linux-mips.org Patchwork: http://patchwork.linux-mips.org/patch/698/ Acked-by: Florian Fainelli <florian@openwrt.org> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/sgi-ip32')
-rw-r--r--arch/mips/sgi-ip32/ip32-setup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sgi-ip32/ip32-setup.c b/arch/mips/sgi-ip32/ip32-setup.c
index c5a5d4a31b4b..3abd1465ec02 100644
--- a/arch/mips/sgi-ip32/ip32-setup.c
+++ b/arch/mips/sgi-ip32/ip32-setup.c
@@ -90,7 +90,7 @@ void __init plat_mem_setup(void)
{
char* con = ArcGetEnvironmentVariable("console");
if (con && *con == 'd') {
- static char options[8];
+ static char options[8] __initdata;
char *baud = ArcGetEnvironmentVariable("dbaud");
if (baud)
strcpy(options, baud);