diff options
author | Wu Zhangjin <wuzhangjin@gmail.com> | 2010-01-04 04:16:47 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2010-02-27 06:53:10 -0500 |
commit | 97e6a89634befaf5bd66d3044d36961c887cd98c (patch) | |
tree | f976d7ce7e8c379aec35d544ecc89f564b57372b /arch/mips/loongson | |
parent | c7e8c668b09a27879e8b45d2a613fb5acdf9f8a3 (diff) |
MIPS: Loongson: Move prom_argc and prom_argv into prom_init_cmdline()
prom_argc and prom_argv are only used by prom_init_cmdline(), move them
into the function.
Signed-off-by: Wu Zhangjin <wuzhangjin@gmail.com>
Cc: linux-mips@linux-mips.org
Cc: yanh@lemote.com
Cc: huhb@lemote.com
Cc: zhangfx@lemote.com
Patchwork: http://patchwork.linux-mips.org/patch/825/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/loongson')
-rw-r--r-- | arch/mips/loongson/common/cmdline.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/mips/loongson/common/cmdline.c b/arch/mips/loongson/common/cmdline.c index 7ad47f227477..9e3283711d61 100644 --- a/arch/mips/loongson/common/cmdline.c +++ b/arch/mips/loongson/common/cmdline.c | |||
@@ -21,12 +21,11 @@ | |||
21 | 21 | ||
22 | #include <loongson.h> | 22 | #include <loongson.h> |
23 | 23 | ||
24 | int prom_argc; | ||
25 | /* pmon passes arguments in 32bit pointers */ | ||
26 | int *_prom_argv; | ||
27 | |||
28 | void __init prom_init_cmdline(void) | 24 | void __init prom_init_cmdline(void) |
29 | { | 25 | { |
26 | int prom_argc; | ||
27 | /* pmon passes arguments in 32bit pointers */ | ||
28 | int *_prom_argv; | ||
30 | int i; | 29 | int i; |
31 | long l; | 30 | long l; |
32 | 31 | ||