summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica/Osd
diff options
context:
space:
mode:
authormsmith <msmith@FreeBSD.org>2002-01-08 19:14:59 +0000
committermsmith <msmith@FreeBSD.org>2002-01-08 19:14:59 +0000
commit40b38b35ecc433b60b6599ff01a56f90111b6274 (patch)
tree62d396794cca67b9b8b5bc14b17e5f77737ffc57 /sys/dev/acpica/Osd
parent4b2e92813e1c37b03773823c50043ac42f707a4f (diff)
downloadFreeBSD-src-40b38b35ecc433b60b6599ff01a56f90111b6274.zip
FreeBSD-src-40b38b35ecc433b60b6599ff01a56f90111b6274.tar.gz
find_devclass -> devclass_find.
Diffstat (limited to 'sys/dev/acpica/Osd')
-rw-r--r--sys/dev/acpica/Osd/OsdInterrupt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/acpica/Osd/OsdInterrupt.c b/sys/dev/acpica/Osd/OsdInterrupt.c
index ac62132..f6a2a9c 100644
--- a/sys/dev/acpica/Osd/OsdInterrupt.c
+++ b/sys/dev/acpica/Osd/OsdInterrupt.c
@@ -108,7 +108,7 @@ AcpiOsRemoveInterruptHandler (UINT32 InterruptNumber, OSD_HANDLER ServiceRoutine
if (ServiceRoutine == NULL)
return_ACPI_STATUS(AE_BAD_PARAMETER);
- if ((sc = devclass_get_softc(find_devclass("acpi"), 0)) == NULL)
+ if ((sc = devclass_get_softc(devclass_find("acpi"), 0)) == NULL)
panic("can't find ACPI device to deregister interrupt");
if (sc->acpi_irq == NULL)
OpenPOWER on IntegriCloud