Skip to content

Commit

Permalink
[PATCH] ARM: Change 'param_offset' to 'boot_params'
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jul 4, 2005
1 parent 19f7241 commit f9bd6ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch/arm/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -737,8 +737,8 @@ void __init setup_arch(char **cmdline_p)
if (mdesc->soft_reboot)
reboot_setup("s");

if (mdesc->param_offset)
tags = phys_to_virt(mdesc->param_offset);
if (mdesc->boot_params)
tags = phys_to_virt(mdesc->boot_params);

/*
* If we have the old style parameters, convert them to
Expand Down
2 changes: 1 addition & 1 deletion include/asm-arm/mach/arch.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct machine_desc {
* page tabe entry */

const char *name; /* architecture name */
unsigned int param_offset; /* parameter page */
unsigned long boot_params; /* tagged list */

unsigned int video_start; /* start of video RAM */
unsigned int video_end; /* end of video RAM */
Expand Down

0 comments on commit f9bd6ea

Please sign in to comment.