diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-14 13:03:24 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-14 13:03:24 -0800 |
commit | 24dfb2b5867df24ba03b6c4418312e23b1300aa8 (patch) | |
tree | c6381a80ee04eb253121ccfd49d05af7559c0041 /arch/mips/bcm47xx/prom.c | |
parent | cd4ca27d3dedfff09000586e4ae67771608696a0 (diff) | |
parent | 5df9d11be46a9f704208644a1e7f13c6104ecff2 (diff) | |
download | talos-op-linux-24dfb2b5867df24ba03b6c4418312e23b1300aa8.tar.gz talos-op-linux-24dfb2b5867df24ba03b6c4418312e23b1300aa8.zip |
Merge branch 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus
* 'upstream' of git://ftp.linux-mips.org/pub/scm/upstream-linus:
MIPS: SMTC: Fix lockup in smtc_distribute_timer
MIPS: TXx9: Update rbtx49xx_defconfig
MIPS: Make local arrays with CL_SIZE static __initdata
MIPS: Add DMA declare coherent memory support
MIPS: Fix emulation of 64-bit FPU on FPU-less 64-bit CPUs.
Diffstat (limited to 'arch/mips/bcm47xx/prom.c')
-rw-r--r-- | arch/mips/bcm47xx/prom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm47xx/prom.c b/arch/mips/bcm47xx/prom.c index 079e33d52783..fb284c3b2cff 100644 --- a/arch/mips/bcm47xx/prom.c +++ b/arch/mips/bcm47xx/prom.c @@ -100,7 +100,7 @@ static __init void prom_init_console(void) static __init void prom_init_cmdline(void) { - char buf[CL_SIZE]; + static char buf[CL_SIZE] __initdata; /* Get the kernel command line from CFE */ if (cfe_getenv("LINUX_CMDLINE", buf, CL_SIZE) >= 0) { |