summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/acpi.c
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2013-10-29 14:19:42 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2013-10-29 14:19:42 +0000
commit3e9a158ce7652da767f5b651a6b4d18234233cd8 (patch)
treee2eba6ba40a9f9f960dabdeebbb1cd86fff3bcb0 /sys/dev/acpica/acpi.c
parent92a9e0e206e5217625c3ab948c384df16bbe416a (diff)
downloadFreeBSD-src-3e9a158ce7652da767f5b651a6b4d18234233cd8.zip
FreeBSD-src-3e9a158ce7652da767f5b651a6b4d18234233cd8.tar.gz
More BUS_PROBE_NOWILDCARD sweeping. Some devices here (if_ath_ahb and siba)
resist easy conversion since they implement a great deal of their attach logic inside probe(). Some of this could be fixed by moving it to attach(), but some requires something more subtle than BUS_PROBE_NOWILDCARD.
Diffstat (limited to 'sys/dev/acpica/acpi.c')
-rw-r--r--sys/dev/acpica/acpi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c
index da252c4..d17245e 100644
--- a/sys/dev/acpica/acpi.c
+++ b/sys/dev/acpica/acpi.c
@@ -431,7 +431,7 @@ acpi_probe(device_t dev)
device_set_desc(dev, acpi_desc);
- return_VALUE (0);
+ return_VALUE (BUS_PROBE_NOWILDCARD);
}
static int
OpenPOWER on IntegriCloud