diff options
| author | Dmitri Vorobiev <dmitri.vorobiev@movial.com> | 2009-11-23 06:53:37 -0500 |
|---|---|---|
| committer | Ralf Baechle <ralf@linux-mips.org> | 2009-12-16 20:57:27 -0500 |
| commit | 599a89459f316499446fdb5c817a0a4835681bae (patch) | |
| tree | 342f276b475b5c1fcdada4573ea704a009a9dc47 /arch/mips/sni | |
| parent | 7326c4e567b50e689d13c04d58aeffa515277ebb (diff) | |
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/sni')
| -rw-r--r-- | arch/mips/sni/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/sni/setup.c b/arch/mips/sni/setup.c index a49272ce7ef5..d16b462154c3 100644 --- a/arch/mips/sni/setup.c +++ b/arch/mips/sni/setup.c | |||
| @@ -60,7 +60,7 @@ static void __init sni_console_setup(void) | |||
| 60 | char *cdev; | 60 | char *cdev; |
| 61 | char *baud; | 61 | char *baud; |
| 62 | int port; | 62 | int port; |
| 63 | static char options[8]; | 63 | static char options[8] __initdata; |
| 64 | 64 | ||
| 65 | cdev = prom_getenv("console_dev"); | 65 | cdev = prom_getenv("console_dev"); |
| 66 | if (strncmp(cdev, "tty", 3) == 0) { | 66 | if (strncmp(cdev, "tty", 3) == 0) { |
