[PATCH] ARM: Change 'param_offset' to 'boot_params'

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Russell King and committed by Russell King f9bd6ea4 19f7241a

+3 -3
+2 -2
arch/arm/kernel/setup.c
··· 737 737 if (mdesc->soft_reboot) 738 738 reboot_setup("s"); 739 739 740 - if (mdesc->param_offset) 741 - tags = phys_to_virt(mdesc->param_offset); 740 + if (mdesc->boot_params) 741 + tags = phys_to_virt(mdesc->boot_params); 742 742 743 743 /* 744 744 * If we have the old style parameters, convert them to
+1 -1
include/asm-arm/mach/arch.h
··· 26 26 * page tabe entry */ 27 27 28 28 const char *name; /* architecture name */ 29 - unsigned int param_offset; /* parameter page */ 29 + unsigned long boot_params; /* tagged list */ 30 30 31 31 unsigned int video_start; /* start of video RAM */ 32 32 unsigned int video_end; /* end of video RAM */