diff options
author | 2016-04-25 15:43:30 +0000 | |
---|---|---|
committer | 2016-04-25 15:43:30 +0000 | |
commit | baba1e6f1c9685522e2ddf5be38d4470ac30055d (patch) | |
tree | dec8b63dccfa7053720a9a8aa173dca9c85619ef | |
parent | add a few new exit types found in newer cpus (diff) | |
download | wireguard-openbsd-baba1e6f1c9685522e2ddf5be38d4470ac30055d.tar.xz wireguard-openbsd-baba1e6f1c9685522e2ddf5be38d4470ac30055d.zip |
We attach acpihpet(4) and acpiec(4) without using the HID, so do not
report it in the dmesg.
OK deraadt@, mlarkin@.
-rw-r--r-- | sys/dev/acpi/acpi.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index b96a0729268..736012413db 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.309 2016/04/02 13:54:29 kettenis Exp $ */ +/* $OpenBSD: acpi.c,v 1.310 2016/04/25 15:43:30 pirofti Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -2758,6 +2758,7 @@ const char *acpi_skip_hids[] = { "INT0800", /* Intel 82802Firmware Hub Device */ "PNP0000", /* 8259-compatible Programmable Interrupt Controller */ "PNP0100", /* PC-class System Timer */ + "PNP0103", /* HPET System Timer */ "PNP0200", /* PC-class DMA Controller */ "PNP0800", /* Microsoft Sound System Compatible Device */ "PNP0A03", /* PCI Bus */ @@ -2766,6 +2767,7 @@ const char *acpi_skip_hids[] = { "PNP0C01", /* System Board */ "PNP0C02", /* PNP Motherboard Resources */ "PNP0C04", /* x87-compatible Floating Point Processing Unit */ + "PNP0C09", /* Embedded Controller Device */ "PNP0C0F", /* PCI Interrupt Link Device */ NULL }; |