minix/kernel/arch/i386/acpi.h
Tomas Hruby 45badf4c05 ACPI in kernel
- the ability for kernel to use ACPI tables to detect IO APICs. It is
  the bare minimum the kernel needs to know about ACPI tables.

- it will be used to find out about processors as the MPS tables are
  deprecated by ACPI and not all vendorsprovide them.
2010-09-02 15:43:51 +00:00

9 lines
128 B
C

#ifndef __ACPI_H__
#define __ACPI_H__
#include "kernel/kernel.h"
_PROTOTYPE(void acpi_init, (void));
#endif /* __ACPI_H__ */