summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/acpi_ec.c
diff options
context:
space:
mode:
authorjkim <jkim@FreeBSD.org>2012-02-07 20:54:44 +0000
committerjkim <jkim@FreeBSD.org>2012-02-07 20:54:44 +0000
commite2a488980bc52aa4b57e2b51278d91d368b8f028 (patch)
treee52b8adaa6cebf1e1b762b5effa612db67a21fbc /sys/dev/acpica/acpi_ec.c
parent3619d603a7c9a5ce6abe764366b472e421a5da40 (diff)
downloadFreeBSD-src-e2a488980bc52aa4b57e2b51278d91d368b8f028.zip
FreeBSD-src-e2a488980bc52aa4b57e2b51278d91d368b8f028.tar.gz
- Give all clocks and timers on acpi0 the equal probing order.
- Increase probing order for ECDT table to match HID-based probing. - Decrease probing order for HPET table to match HID-based probing. - Decrease probing order for CPUs and system resources. - Fix ACPI_DEV_BASE_ORDER to reflect the reality.
Diffstat (limited to 'sys/dev/acpica/acpi_ec.c')
-rw-r--r--sys/dev/acpica/acpi_ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi_ec.c b/sys/dev/acpica/acpi_ec.c
index 5c71d3d..f8af33c 100644
--- a/sys/dev/acpica/acpi_ec.c
+++ b/sys/dev/acpica/acpi_ec.c
@@ -295,7 +295,7 @@ acpi_ec_ecdt_probe(device_t parent)
}
/* Create the child device with the given unit number. */
- child = BUS_ADD_CHILD(parent, 0, "acpi_ec", ecdt->Uid);
+ child = BUS_ADD_CHILD(parent, 3, "acpi_ec", ecdt->Uid);
if (child == NULL) {
printf("%s: can't add child\n", __func__);
return;
OpenPOWER on IntegriCloud