voyager: use struct instead of PARAM
Use struct boot_params instead of PARAM + 0xoffsets. Fixes one of many Voyager build problems. arch/x86/kernel/setup_32.c:543: error: 'PARAM' undeclared (first use in this function) Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Cc: James Bottomley <James.Bottomley@steeleye.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
3c5fd9c77d
commit
1a0c3ea65c
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
#include <asm/voyager.h>
|
||||
#define VOYAGER_BIOS_INFO ((struct voyager_bios_info *)(PARAM+0x40))
|
||||
#include <asm/setup_32.h>
|
||||
#define VOYAGER_BIOS_INFO ((struct voyager_bios_info *) \
|
||||
(&boot_params.apm_bios_info))
|
||||
|
||||
/* Hook to call BIOS initialisation function */
|
||||
|
||||
|
|
Loading…
Reference in a new issue