summaryrefslogtreecommitdiff
path: root/sys/dev/acpi/dsdt.h
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2016-03-14 06:37:32 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2016-03-14 06:37:32 +0000
commited078513889b03c43cf24d053459f31f80985844 (patch)
tree8acf16035baaed98e9f5322e02c16dd775d2a294 /sys/dev/acpi/dsdt.h
parentf3453bbfc7ead24852eade3f4d681524931b5394 (diff)
Correct the value of SRT_ENDTAG: it was documented incorrectly in early
ACPI specs. With the correct value, it can now be used in a few places instead of hardcoding 0x79. ok kettenis@
Diffstat (limited to 'sys/dev/acpi/dsdt.h')
-rw-r--r--sys/dev/acpi/dsdt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h
index bcecbae824e..a72442624e9 100644
--- a/sys/dev/acpi/dsdt.h
+++ b/sys/dev/acpi/dsdt.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsdt.h,v 1.67 2016/01/13 23:11:22 kettenis Exp $ */
+/* $OpenBSD: dsdt.h,v 1.68 2016/03/14 06:37:31 guenther Exp $ */
/*
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
*
@@ -83,7 +83,7 @@ const char *aml_nodename(struct aml_node *);
#define SRT_ENDDEP 0x38
#define SRT_IOPORT 0x47
#define SRT_FIXEDPORT 0x4B
-#define SRT_ENDTAG 0x78
+#define SRT_ENDTAG 0x79
#define SR_IRQ 0x04
#define SR_DMA 0x05