Display the name of the acpi node that we do not find the pci interrupt

routing table for.
This commit is contained in:
Peter Wemm 2002-10-04 00:32:09 +00:00
parent a1c254d8c6
commit f144391b8f

View File

@ -72,8 +72,9 @@ acpi_pcib_attach(device_t dev, ACPI_BUFFER *prt, int busno)
status = AcpiGetIrqRoutingTable(acpi_get_handle(dev), prt); status = AcpiGetIrqRoutingTable(acpi_get_handle(dev), prt);
if (ACPI_FAILURE(status)) if (ACPI_FAILURE(status))
/* This is not an error, but it may reduce functionality. */ /* This is not an error, but it may reduce functionality. */
device_printf(dev, "could not get PCI interrupt routing table - %s\n", device_printf(dev,
AcpiFormatException(status)); "could not get PCI interrupt routing table for %s - %s\n",
acpi_name(acpi_get_handle(dev)), AcpiFormatException(status));
/* /*
* Attach the PCI bus proper. * Attach the PCI bus proper.