x86 Fix VMI crash on boot in 2.6.28-rc8
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-x86 / mach-es7000 / mach_mpparse.h
blobef26d3523625451c38eeaded73228869cf737a2b
1 #ifndef __ASM_MACH_MPPARSE_H
2 #define __ASM_MACH_MPPARSE_H
4 #include <linux/acpi.h>
6 extern int parse_unisys_oem (char *oemptr);
7 extern int find_unisys_acpi_oem_table(unsigned long *oem_addr);
8 extern void setup_unisys(void);
10 #ifndef CONFIG_X86_GENERICARCH
11 extern int acpi_madt_oem_check(char *oem_id, char *oem_table_id);
12 extern int mps_oem_check(struct mp_config_table *mpc, char *oem,
13 char *productid);
14 #endif
16 #ifdef CONFIG_ACPI
18 static inline int es7000_check_dsdt(void)
20 struct acpi_table_header header;
22 if (ACPI_SUCCESS(acpi_get_table_header(ACPI_SIG_DSDT, 0, &header)) &&
23 !strncmp(header.oem_id, "UNISYS", 6))
24 return 1;
25 return 0;
27 #endif
29 #endif /* __ASM_MACH_MPPARSE_H */