diff options
author | iwasaki <iwasaki@FreeBSD.org> | 2000-12-12 14:20:27 +0000 |
---|---|---|
committer | iwasaki <iwasaki@FreeBSD.org> | 2000-12-12 14:20:27 +0000 |
commit | 9af9c9fb32a329e98a319b3365a140ca76e9da01 (patch) | |
tree | 21059ed446320370dc41dec40ee10639c08b196f /sys/dev/acpica | |
parent | 4f93cb1f4a50514e47095c4800e8b88aa17d202e (diff) | |
download | FreeBSD-src-9af9c9fb32a329e98a319b3365a140ca76e9da01.zip FreeBSD-src-9af9c9fb32a329e98a319b3365a140ca76e9da01.tar.gz |
Catch up with the recent conversion the per-eventhandler list mutex to
a lockmgr lock.
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r-- | sys/dev/acpica/acpi.c | 1 | ||||
-rw-r--r-- | sys/dev/acpica/acpi_lid.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index 3bb3a9b..5eb9d60 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -33,6 +33,7 @@ #include <sys/param.h> #include <sys/kernel.h> #include <sys/malloc.h> +#include <sys/mutex.h> #include <sys/bus.h> #include <sys/conf.h> #include <sys/ioccom.h> diff --git a/sys/dev/acpica/acpi_lid.c b/sys/dev/acpica/acpi_lid.c index b93913f..c6f8614 100644 --- a/sys/dev/acpica/acpi_lid.c +++ b/sys/dev/acpica/acpi_lid.c @@ -33,6 +33,7 @@ #include <sys/param.h> #include <sys/kernel.h> #include <sys/bus.h> +#include <sys/mutex.h> #include "acpi.h" |