diff options
author | Alon Bar-Lev <alon.barlev@gmail.com> | 2007-02-12 03:54:09 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:37 -0500 |
commit | 9c00f7613249b3b42782a226308353a4033c11c3 (patch) | |
tree | 57d8db1ae07cc281615d6386232fe8f7447eb32f /arch/frv | |
parent | 87e1f9c6dcb4829fd8a68a3af87098cee8ef955b (diff) |
[PATCH] Dynamic kernel command-line: frv
1. Rename saved_command_line into boot_command_line.
2. Set command_line as __initdata.
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/kernel/setup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/frv/kernel/setup.c b/arch/frv/kernel/setup.c index 1a5eb6c301c9..8ea3ca2aba62 100644 --- a/arch/frv/kernel/setup.c +++ b/arch/frv/kernel/setup.c | |||
@@ -110,7 +110,7 @@ unsigned long __initdata num_mappedpages; | |||
110 | 110 | ||
111 | struct cpuinfo_frv __nongprelbss boot_cpu_data; | 111 | struct cpuinfo_frv __nongprelbss boot_cpu_data; |
112 | 112 | ||
113 | char command_line[COMMAND_LINE_SIZE]; | 113 | char __initdata command_line[COMMAND_LINE_SIZE]; |
114 | char __initdata redboot_command_line[COMMAND_LINE_SIZE]; | 114 | char __initdata redboot_command_line[COMMAND_LINE_SIZE]; |
115 | 115 | ||
116 | #ifdef CONFIG_PM | 116 | #ifdef CONFIG_PM |
@@ -762,7 +762,7 @@ void __init setup_arch(char **cmdline_p) | |||
762 | printk("uClinux FR-V port done by Red Hat Inc <dhowells@redhat.com>\n"); | 762 | printk("uClinux FR-V port done by Red Hat Inc <dhowells@redhat.com>\n"); |
763 | #endif | 763 | #endif |
764 | 764 | ||
765 | memcpy(saved_command_line, redboot_command_line, COMMAND_LINE_SIZE); | 765 | memcpy(boot_command_line, redboot_command_line, COMMAND_LINE_SIZE); |
766 | 766 | ||
767 | determine_cpu(); | 767 | determine_cpu(); |
768 | determine_clocks(1); | 768 | determine_clocks(1); |
@@ -803,7 +803,7 @@ void __init setup_arch(char **cmdline_p) | |||
803 | #endif | 803 | #endif |
804 | 804 | ||
805 | /* deal with the command line - RedBoot may have passed one to the kernel */ | 805 | /* deal with the command line - RedBoot may have passed one to the kernel */ |
806 | memcpy(command_line, saved_command_line, sizeof(command_line)); | 806 | memcpy(command_line, boot_command_line, sizeof(command_line)); |
807 | *cmdline_p = &command_line[0]; | 807 | *cmdline_p = &command_line[0]; |
808 | parse_cmdline_early(command_line); | 808 | parse_cmdline_early(command_line); |
809 | 809 | ||