diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-01-23 11:21:05 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-02-06 11:53:16 -0500 |
commit | 69a6c312e5ebb2e929ceb67e6246e2d9314f1d29 (patch) | |
tree | 00f2a47304bec67bacb9859d3c8ba21c285f2f06 /arch/mips/kernel/setup.c | |
parent | 907e193ea798b3f73a71a2a01f938b69fd53b26d (diff) |
[MIPS] Move some kernel globals from asm file to C file.
This get rid of some undesirable hole in BSS section due to random
order of placement.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/kernel/setup.c')
-rw-r--r-- | arch/mips/kernel/setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/mips/kernel/setup.c b/arch/mips/kernel/setup.c index e1d76b87601c..c4359791bd5c 100644 --- a/arch/mips/kernel/setup.c +++ b/arch/mips/kernel/setup.c | |||
@@ -563,3 +563,6 @@ int __init dsp_disable(char *s) | |||
563 | } | 563 | } |
564 | 564 | ||
565 | __setup("nodsp", dsp_disable); | 565 | __setup("nodsp", dsp_disable); |
566 | |||
567 | unsigned long kernelsp[NR_CPUS]; | ||
568 | unsigned long fw_arg0, fw_arg1, fw_arg2, fw_arg3; | ||