[PATCH] Dynamic kernel command-line: parisc
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: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
43cd34645d
commit
668f9931c8
@@ -77,12 +77,12 @@ static void __init mem_limit_func(void)
|
||||
{
|
||||
char *cp, *end;
|
||||
unsigned long limit;
|
||||
extern char saved_command_line[];
|
||||
extern char __initdata boot_command_line[];
|
||||
|
||||
/* We need this before __setup() functions are called */
|
||||
|
||||
limit = MAX_MEM;
|
||||
for (cp = saved_command_line; *cp; ) {
|
||||
for (cp = boot_command_line; *cp; ) {
|
||||
if (memcmp(cp, "mem=", 4) == 0) {
|
||||
cp += 4;
|
||||
limit = memparse(cp, &end);
|
||||
|
Reference in New Issue
Block a user