diff options
author | Dmitri Vorobiev <dmitri.vorobiev@movial.com> | 2009-11-23 13:53:37 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-12-17 01:57:27 +0000 |
commit | 599a89459f316499446fdb5c817a0a4835681bae (patch) | |
tree | 342f276b475b5c1fcdada4573ea704a009a9dc47 /arch/mips/ar7 | |
parent | 7326c4e567b50e689d13c04d58aeffa515277ebb (diff) | |
download | linux-599a89459f316499446fdb5c817a0a4835681bae.tar.gz linux-599a89459f316499446fdb5c817a0a4835681bae.tar.bz2 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/ar7')
-rw-r--r-- | arch/mips/ar7/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/ar7/platform.c b/arch/mips/ar7/platform.c index 835f3f0319ca..85169c08d8dc 100644 --- a/arch/mips/ar7/platform.c +++ b/arch/mips/ar7/platform.c @@ -505,7 +505,7 @@ static int __init ar7_register_devices(void) int res; u32 *bootcr, val; #ifdef CONFIG_SERIAL_8250 - static struct uart_port uart_port[2]; + static struct uart_port uart_port[2] __initdata; memset(uart_port, 0, sizeof(struct uart_port) * 2); |