diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2005-12-16 21:11:52 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2005-12-16 21:11:52 +0000 |
commit | 94cf9cc49f0289646dd83e0c5b5d987dc425cf5c (patch) | |
tree | fb35ccf9a4c72a3c08b876c7d7c23316506de8b9 /sys/dev/acpi | |
parent | 28e176baffef6d0b37fb31a2b475f0a768cca5e8 (diff) |
Typo and use correct header file.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/acpidev.h | 4 | ||||
-rw-r--r-- | sys/dev/acpi/hpet.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/acpi/acpidev.h b/sys/dev/acpi/acpidev.h index c7b9265b412..b3b2396a810 100644 --- a/sys/dev/acpi/acpidev.h +++ b/sys/dev/acpi/acpidev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidev.h,v 1.1 2005/12/16 04:20:39 marco Exp $ */ +/* $OpenBSD: acpidev.h,v 1.2 2005/12/16 21:11:51 marco Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> @@ -170,7 +170,7 @@ struct acpibat_bmd { * Results : LIST of Power Class pointers */ -/* hpte device */ +/* hpet device */ #define HPET_REG_SIZE 1024 #define HPET_CAPABILITIES 0x000 diff --git a/sys/dev/acpi/hpet.c b/sys/dev/acpi/hpet.c index 372d968cb3c..70144a2018e 100644 --- a/sys/dev/acpi/hpet.c +++ b/sys/dev/acpi/hpet.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hpet.c,v 1.2 2005/07/10 19:39:01 grange Exp $ */ +/* $OpenBSD: hpet.c,v 1.3 2005/12/16 21:11:51 marco Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -27,7 +27,7 @@ #include <dev/acpi/acpireg.h> #include <dev/acpi/acpivar.h> -#include <dev/acpi/hpetreg.h> +#include <dev/acpi/acpidev.h> int hpetmatch(struct device *, void *, void *); void hpetattach(struct device *, struct device *, void *); |