diff options
| author | Scott Long <scottl@FreeBSD.org> | 2000-12-02 01:14:14 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2000-12-02 01:14:14 +0000 |
| commit | 3cd59d7b9c74c4bfb7e5559b4fd3652020a2e473 (patch) | |
| tree | 3b56f30a6f73c49cdcfc432d584e8134999c52f8 | |
| parent | 794cd879fe3cb31bc7ffbc79298b1a4498537921 (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpi_pcib.c | 9 | ||||
| -rw-r--r-- | sys/dev/acpica/acpi_pcib_acpi.c | 9 |
2 files changed, 10 insertions, 8 deletions
diff --git a/sys/dev/acpica/acpi_pcib.c b/sys/dev/acpica/acpi_pcib.c index 76c1d86f1777..1e7ef6ed6594 100644 --- a/sys/dev/acpica/acpi_pcib.c +++ b/sys/dev/acpica/acpi_pcib.c @@ -181,11 +181,12 @@ acpi_pcib_attach(device_t dev) } /* - * Note that we defer the actual scan of the child PCI bus; ACPI will call - * bus_generic_attach on its children a second time after the first pass - * is complete. This leads to slightly neater output. + * Now go scan the bus. + * + * XXX It would be nice to defer this and count on the nexus getting it + * after the first pass, but this does not seem to be reliable. */ - return(0); + return(bus_generic_attach(dev)); } static int diff --git a/sys/dev/acpica/acpi_pcib_acpi.c b/sys/dev/acpica/acpi_pcib_acpi.c index 76c1d86f1777..1e7ef6ed6594 100644 --- a/sys/dev/acpica/acpi_pcib_acpi.c +++ b/sys/dev/acpica/acpi_pcib_acpi.c @@ -181,11 +181,12 @@ acpi_pcib_attach(device_t dev) } /* - * Note that we defer the actual scan of the child PCI bus; ACPI will call - * bus_generic_attach on its children a second time after the first pass - * is complete. This leads to slightly neater output. + * Now go scan the bus. + * + * XXX It would be nice to defer this and count on the nexus getting it + * after the first pass, but this does not seem to be reliable. */ - return(0); + return(bus_generic_attach(dev)); } static int |
