mach_mpparse.h 375 B

1234567891011121314151617
  1. #ifndef _ASM_X86_MACH_DEFAULT_MACH_MPPARSE_H
  2. #define _ASM_X86_MACH_DEFAULT_MACH_MPPARSE_H
  3. static inline int
  4. mps_oem_check(struct mpc_table *mpc, char *oem, char *productid)
  5. {
  6. return 0;
  7. }
  8. /* Hook from generic ACPI tables.c */
  9. static inline int default_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
  10. {
  11. return 0;
  12. }
  13. #endif /* _ASM_X86_MACH_DEFAULT_MACH_MPPARSE_H */