diff options
author | msmith <msmith@FreeBSD.org> | 2000-09-30 20:12:27 +0000 |
---|---|---|
committer | msmith <msmith@FreeBSD.org> | 2000-09-30 20:12:27 +0000 |
commit | 43b494595ef50e9426434fd028f71567c7fc2e36 (patch) | |
tree | 04488cdbfa2a244cc961901253683a6d7f5405b8 /sys/dev/acpi/aml/aml_common.c | |
parent | 8cc643d7ff3e76e0d1cadc99dbd6ad666b8a0171 (diff) | |
download | FreeBSD-src-43b494595ef50e9426434fd028f71567c7fc2e36.zip FreeBSD-src-43b494595ef50e9426434fd028f71567c7fc2e36.tar.gz |
More updates to the ACPI code:
- Move all register I/O into acpi_io.c
- Move event handling into acpi_event.c
- Reorganise headers into acpivar/acpireg/acpiio
- Move find-RSDT and find-ACPI-owned-memory into acpi_machdep
- Allocate all resources (except those detailed only by AML)
as real resources. Add infrastructure that will make adding
resource support to AML code easy.
- Remove all ACPI #ifdefs in non-ACPI code
- Removed unnecessary includes
- Minor style and commenting fixes
Reviewed by: iwasaki
Diffstat (limited to 'sys/dev/acpi/aml/aml_common.c')
-rw-r--r-- | sys/dev/acpi/aml/aml_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpi/aml/aml_common.c b/sys/dev/acpi/aml/aml_common.c index 4721b7f..a00f971 100644 --- a/sys/dev/acpi/aml/aml_common.c +++ b/sys/dev/acpi/aml/aml_common.c @@ -42,7 +42,7 @@ #include <sys/kernel.h> #include <sys/sysctl.h> #include <sys/systm.h> -#include <sys/acpi.h> +#include <dev/acpi/acpireg.h> #ifndef ACPI_NO_OSDFUNC_INLINE #include <machine/acpica_osd.h> #endif /* !ACPI_NO_OSDFUNC_INLINE */ |