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 | |
| 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>
| -rw-r--r-- | arch/mips/ar7/platform.c | 2 | ||||
| -rw-r--r-- | arch/mips/sgi-ip22/ip22-eisa.c | 4 | ||||
| -rw-r--r-- | arch/mips/sgi-ip22/ip22-setup.c | 2 | ||||
| -rw-r--r-- | arch/mips/sgi-ip32/ip32-setup.c | 2 | ||||
| -rw-r--r-- | arch/mips/sni/setup.c | 2 |
5 files changed, 6 insertions, 6 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) | |||
| 505 | int res; | 505 | int res; |
| 506 | u32 *bootcr, val; | 506 | u32 *bootcr, val; |
| 507 | #ifdef CONFIG_SERIAL_8250 | 507 | #ifdef CONFIG_SERIAL_8250 |
| 508 | static struct uart_port uart_port[2]; | 508 | static struct uart_port uart_port[2] __initdata; |
| 509 | 509 | ||
| 510 | memset(uart_port, 0, sizeof(struct uart_port) * 2); | 510 | memset(uart_port, 0, sizeof(struct uart_port) * 2); |
| 511 | 511 | ||
diff --git a/arch/mips/sgi-ip22/ip22-eisa.c b/arch/mips/sgi-ip22/ip22-eisa.c index 1617241d2737..da44ccb20829 100644 --- a/arch/mips/sgi-ip22/ip22-eisa.c +++ b/arch/mips/sgi-ip22/ip22-eisa.c | |||
| @@ -50,9 +50,9 @@ | |||
| 50 | 50 | ||
| 51 | static char __init *decode_eisa_sig(unsigned long addr) | 51 | static char __init *decode_eisa_sig(unsigned long addr) |
| 52 | { | 52 | { |
| 53 | static char sig_str[EISA_SIG_LEN]; | 53 | static char sig_str[EISA_SIG_LEN] __initdata; |
| 54 | u8 sig[4]; | 54 | u8 sig[4]; |
| 55 | u16 rev; | 55 | u16 rev; |
| 56 | int i; | 56 | int i; |
| 57 | 57 | ||
| 58 | for (i = 0; i < 4; i++) { | 58 | for (i = 0; i < 4; i++) { |
diff --git a/arch/mips/sgi-ip22/ip22-setup.c b/arch/mips/sgi-ip22/ip22-setup.c index b9a931358e23..5deeb68b6c9c 100644 --- a/arch/mips/sgi-ip22/ip22-setup.c +++ b/arch/mips/sgi-ip22/ip22-setup.c | |||
| @@ -67,7 +67,7 @@ void __init plat_mem_setup(void) | |||
| 67 | cserial = ArcGetEnvironmentVariable("ConsoleOut"); | 67 | cserial = ArcGetEnvironmentVariable("ConsoleOut"); |
| 68 | 68 | ||
| 69 | if ((ctype && *ctype == 'd') || (cserial && *cserial == 's')) { | 69 | if ((ctype && *ctype == 'd') || (cserial && *cserial == 's')) { |
| 70 | static char options[8]; | 70 | static char options[8] __initdata; |
| 71 | char *baud = ArcGetEnvironmentVariable("dbaud"); | 71 | char *baud = ArcGetEnvironmentVariable("dbaud"); |
| 72 | if (baud) | 72 | if (baud) |
| 73 | strcpy(options, baud); | 73 | strcpy(options, baud); |
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) | |||
| 90 | { | 90 | { |
| 91 | char* con = ArcGetEnvironmentVariable("console"); | 91 | char* con = ArcGetEnvironmentVariable("console"); |
| 92 | if (con && *con == 'd') { | 92 | if (con && *con == 'd') { |
| 93 | static char options[8]; | 93 | static char options[8] __initdata; |
| 94 | char *baud = ArcGetEnvironmentVariable("dbaud"); | 94 | char *baud = ArcGetEnvironmentVariable("dbaud"); |
| 95 | if (baud) | 95 | if (baud) |
| 96 | strcpy(options, baud); | 96 | strcpy(options, baud); |
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) { |
