summaryrefslogtreecommitdiffstats
path: root/sys/dev/acpica
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-10-04 00:32:09 +0000
committerpeter <peter@FreeBSD.org>2002-10-04 00:32:09 +0000
commitf5c77557fc41696c0e205e1fd1996785b60615df (patch)
treeaaf62238496c3961b05ef455378b09f555b25deb /sys/dev/acpica
parente3b4d3d5623f988398b5d1e060195b1b07ff3088 (diff)
downloadFreeBSD-src-f5c77557fc41696c0e205e1fd1996785b60615df.zip
FreeBSD-src-f5c77557fc41696c0e205e1fd1996785b60615df.tar.gz
Display the name of the acpi node that we do not find the pci interrupt
routing table for.
Diffstat (limited to 'sys/dev/acpica')
-rw-r--r--sys/dev/acpica/acpi_pcib.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_pcib.c b/sys/dev/acpica/acpi_pcib.c
index 8e34f17..d6c3e47 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.
OpenPOWER on IntegriCloud