Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 48014
b: refs/heads/master
c: bf71cec
h: refs/heads/master
v: v3
  • Loading branch information
Alon Bar-Lev authored and Linus Torvalds committed Feb 12, 2007
1 parent 3a95ae7 commit 976d0f2
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b8757b21f7628c57cb20e55be324fdef283a56e9
refs/heads/master: bf71cecbe4282fbb8ec035a7199fa4aca64db54c
2 changes: 1 addition & 1 deletion trunk/arch/ppc/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ void __init setup_arch(char **cmdline_p)
init_mm.brk = (unsigned long) klimit;

/* Save unparsed command line copy for /proc/cmdline */
strlcpy(saved_command_line, cmd_line, COMMAND_LINE_SIZE);
strlcpy(boot_command_line, cmd_line, COMMAND_LINE_SIZE);
*cmdline_p = cmd_line;

parse_early_param();
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/lopec.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ lopec_setup_arch(void)
if (bootargs != NULL) {
strcpy(cmd_line, bootargs);
/* again.. */
strcpy(saved_command_line, cmd_line);
strcpy(boot_command_line, cmd_line);
}
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/ppc/platforms/pplus.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ static void __init pplus_setup_arch(void)
if (bootargs != NULL) {
strcpy(cmd_line, bootargs);
/* again.. */
strcpy(saved_command_line, cmd_line);
strcpy(boot_command_line, cmd_line);
}
}
#endif
Expand Down
4 changes: 2 additions & 2 deletions trunk/arch/ppc/platforms/prep_setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ static void __init prep_init_sound(void)
/*
* Find a way to push these informations to the cs4232 driver
* Give it out with printk, when not in cmd_line?
* Append it to cmd_line and saved_command_line?
* Append it to cmd_line and boot_command_line?
* Format is cs4232=io,irq,dma,dma2
*/
}
Expand Down Expand Up @@ -897,7 +897,7 @@ prep_setup_arch(void)
if (bootargs != NULL) {
strcpy(cmd_line, bootargs);
/* again.. */
strcpy(saved_command_line, cmd_line);
strcpy(boot_command_line, cmd_line);
}
}

Expand Down

0 comments on commit 976d0f2

Please sign in to comment.