From: Randy Dunlap Date: Sat, 10 Nov 2007 03:30:36 +0000 (+0100) Subject: voyager: use struct instead of PARAM X-Git-Tag: v2.6.24-rc3~167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1a0c3ea65ca4838a803a14f0ff2bfc78aa69c9a0;p=platform%2Fupstream%2Fkernel-adaptation-pc.git 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 Cc: James Bottomley Signed-off-by: Andrew Morton Signed-off-by: Ingo Molnar Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/mach-voyager/setup_arch.h b/include/asm-x86/mach-voyager/setup_arch.h index 84d01ad..1710ae1 100644 --- a/include/asm-x86/mach-voyager/setup_arch.h +++ b/include/asm-x86/mach-voyager/setup_arch.h @@ -1,5 +1,7 @@ #include -#define VOYAGER_BIOS_INFO ((struct voyager_bios_info *)(PARAM+0x40)) +#include +#define VOYAGER_BIOS_INFO ((struct voyager_bios_info *) \ + (&boot_params.apm_bios_info)) /* Hook to call BIOS initialisation function */