diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-11-10 04:30:36 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@apollo.(none)> | 2007-11-10 04:30:36 +0100 |
commit | 1a0c3ea65ca4838a803a14f0ff2bfc78aa69c9a0 (patch) | |
tree | 879cae5b04833b67393e0655eedec26f421d3cca | |
parent | 3c5fd9c77d609b51c0bab682c9d40cbb496ec6f1 (diff) | |
download | blackbird-obmc-linux-1a0c3ea65ca4838a803a14f0ff2bfc78aa69c9a0.tar.gz blackbird-obmc-linux-1a0c3ea65ca4838a803a14f0ff2bfc78aa69c9a0.zip |
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>
-rw-r--r-- | include/asm-x86/mach-voyager/setup_arch.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-x86/mach-voyager/setup_arch.h b/include/asm-x86/mach-voyager/setup_arch.h index 84d01ad33459..1710ae10eb67 100644 --- a/include/asm-x86/mach-voyager/setup_arch.h +++ b/include/asm-x86/mach-voyager/setup_arch.h @@ -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 */ |