Przeglądaj źródła

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>
Randy Dunlap 17 lat temu
rodzic
commit
1a0c3ea65c
1 zmienionych plików z 3 dodań i 1 usunięć
  1. 3 1
      include/asm-x86/mach-voyager/setup_arch.h

+ 3 - 1
include/asm-x86/mach-voyager/setup_arch.h

@@ -1,5 +1,7 @@
 #include <asm/voyager.h>
 #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 */
 /* Hook to call BIOS initialisation function */