aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/acpica
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-04-14 06:45:24 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-04-14 06:45:24 +0000
commitb460c6f86b804f119516b2b47dc416658db248d7 (patch)
tree45ada6ea0e061e7d508ea8011bff3e2b9d41c3d0 /sys/dev/acpica
parentf781b7b493c91d6fa1187aafdbfbb2b38cd79c4c (diff)
Notes
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r--sys/dev/acpica/acpi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index 167ed1ab0419f..2272a1893aa66 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -1495,6 +1495,7 @@ acpi_probe_order(ACPI_HANDLE handle, int *order)
/*
* 1. I/O port and memory system resource holders
* 2. Embedded controllers (to handle early accesses)
+ * 3. PCI Link Devices
*/
ret = 0;
if (acpi_MatchHid(handle, "PNP0C01") || acpi_MatchHid(handle, "PNP0C02")) {
@@ -1503,6 +1504,9 @@ acpi_probe_order(ACPI_HANDLE handle, int *order)
} else if (acpi_MatchHid(handle, "PNP0C09")) {
*order = 2;
ret = 1;
+ } else if (acpi_MatchHid(handle, "PNP0C0F")) {
+ *order = 3;
+ ret = 1;
}
return (ret);