mach_mpparse.h 379 B

1234567891011121314151617
  1. #ifndef ASM_X86__MACH_DEFAULT__MACH_MPPARSE_H
  2. #define ASM_X86__MACH_DEFAULT__MACH_MPPARSE_H
  3. static inline int mps_oem_check(struct mp_config_table *mpc, char *oem,
  4. char *productid)
  5. {
  6. return 0;
  7. }
  8. /* Hook from generic ACPI tables.c */
  9. static inline int 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 */