diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2002-10-04 00:32:09 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2002-10-04 00:32:09 +0000 |
| commit | f144391b8f22b422baa8ba24f4c4017893cd4ca3 (patch) | |
| tree | aaf62238496c3961b05ef455378b09f555b25deb | |
| parent | a1c254d8c62cea8a3c9deaeb7543b341ea27b0c7 (diff) | |
Notes
| -rw-r--r-- | sys/dev/acpica/acpi_pcib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_pcib.c b/sys/dev/acpica/acpi_pcib.c index 8e34f17dd4f3..d6c3e47cfbc5 100644 --- a/sys/dev/acpica/acpi_pcib.c +++ b/sys/dev/acpica/acpi_pcib.c @@ -72,8 +72,9 @@ acpi_pcib_attach(device_t dev, ACPI_BUFFER *prt, int busno) status = AcpiGetIrqRoutingTable(acpi_get_handle(dev), prt); if (ACPI_FAILURE(status)) /* This is not an error, but it may reduce functionality. */ - device_printf(dev, "could not get PCI interrupt routing table - %s\n", - AcpiFormatException(status)); + device_printf(dev, + "could not get PCI interrupt routing table for %s - %s\n", + acpi_name(acpi_get_handle(dev)), AcpiFormatException(status)); /* * Attach the PCI bus proper. |
