Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 177907
b: refs/heads/master
c: 599a894
h: refs/heads/master
i:
  177905: ccc0267
  177903: 4eb4ff5
v: v3
  • Loading branch information
Dmitri Vorobiev authored and Ralf Baechle committed Dec 17, 2009
1 parent f4d06a7 commit 20cd976
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7326c4e567b50e689d13c04d58aeffa515277ebb
refs/heads/master: 599a89459f316499446fdb5c817a0a4835681bae
2 changes: 1 addition & 1 deletion trunk/arch/mips/ar7/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/mips/sgi-ip22/ip22-eisa.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@

static char __init *decode_eisa_sig(unsigned long addr)
{
static char sig_str[EISA_SIG_LEN];
static char sig_str[EISA_SIG_LEN] __initdata;
u8 sig[4];
u16 rev;
u16 rev;
int i;

for (i = 0; i < 4; i++) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/sgi-ip22/ip22-setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void __init plat_mem_setup(void)
cserial = ArcGetEnvironmentVariable("ConsoleOut");

if ((ctype && *ctype == 'd') || (cserial && *cserial == 's')) {
static char options[8];
static char options[8] __initdata;
char *baud = ArcGetEnvironmentVariable("dbaud");
if (baud)
strcpy(options, baud);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/sgi-ip32/ip32-setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/mips/sni/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ static void __init sni_console_setup(void)
char *cdev;
char *baud;
int port;
static char options[8];
static char options[8] __initdata;

cdev = prom_getenv("console_dev");
if (strncmp(cdev, "tty", 3) == 0) {
Expand Down

0 comments on commit 20cd976

Please sign in to comment.