diff options
Diffstat (limited to 'sys/dev/fdc/fdc_acpi.c')
-rw-r--r-- | sys/dev/fdc/fdc_acpi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/fdc/fdc_acpi.c b/sys/dev/fdc/fdc_acpi.c index 7f991c8f0cb3..ab3160909c1d 100644 --- a/sys/dev/fdc/fdc_acpi.c +++ b/sys/dev/fdc/fdc_acpi.c @@ -178,7 +178,8 @@ fdc_acpi_probe_children(device_t bus, device_t dev, void *fde) free(ctx, M_TEMP); /* Attach any children found during the probe. */ - return (bus_generic_attach(dev)); + bus_attach_children(dev); + return (0); } static ACPI_STATUS |