From 9e0dd54fea793db2ca912e6f7fb7eeab196bb781 Mon Sep 17 00:00:00 2001 From: Nate Lawson Date: Tue, 12 Oct 2004 21:33:08 +0000 Subject: [PATCH] Attach the device description for ISA devices on the ACPI bus. MFC after: 1 day --- sys/dev/acpica/acpi.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sys/dev/acpica/acpi.c b/sys/dev/acpica/acpi.c index 6769b063d25..de8b1ee74de 100644 --- a/sys/dev/acpica/acpi.c +++ b/sys/dev/acpica/acpi.c @@ -1169,6 +1169,9 @@ acpi_isa_pnp_probe(device_t bus, device_t child, struct isa_pnp_id *ids) } out: + if (result == 0 && ids->ip_desc) + device_set_desc(child, ids->ip_desc); + return_VALUE (result); }