aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMike Smith <msmith@FreeBSD.org>2001-07-05 07:21:12 +0000
committerMike Smith <msmith@FreeBSD.org>2001-07-05 07:21:12 +0000
commit76d1dff4b410834fd83be063329590e8e5de47bb (patch)
treee26c46acd6d09622ac348d708a254575c15f7cf3 /sys
parent4fa387b692b2e7e5d36ceaebf65b26ece395315a (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/acpica/acpi_ec.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/acpica/acpi_ec.c b/sys/dev/acpica/acpi_ec.c
index 1c211b41a103..2f2909083d32 100644
--- a/sys/dev/acpica/acpi_ec.c
+++ b/sys/dev/acpica/acpi_ec.c
@@ -345,7 +345,8 @@ acpi_ec_attach(device_t dev)
*/
if ((Status = AcpiInstallGpeHandler(sc->ec_gpebit, ACPI_EVENT_LEVEL_TRIGGERED | ACPI_EVENT_EDGE_TRIGGERED,
EcGpeHandler, sc)) != AE_OK) {
- device_printf(dev, "can't install GPE handler - %s\n", acpi_strerror(Status));
+ device_printf(dev, "can't install GPE handler for %s - %s\n",
+ acpi_name(sc->ec_handle), acpi_strerror(Status));
return_VALUE(ENXIO);
}
@@ -355,7 +356,9 @@ acpi_ec_attach(device_t dev)
DEBUG_PRINT(TRACE_RESOURCES, ("attaching address space handler\n"));
if ((Status = AcpiInstallAddressSpaceHandler(sc->ec_handle, ACPI_ADR_SPACE_EC,
EcSpaceHandler, EcSpaceSetup, sc)) != AE_OK) {
- device_printf(dev, "can't install address space handler - %s\n", acpi_strerror(Status));
+ device_printf(dev, "can't install address space handler for %s - %s\n",
+ acpi_name(sc->ec_handle), acpi_strerror(Status));
+ panic("very suck");
return_VALUE(ENXIO);
}
DEBUG_PRINT(TRACE_RESOURCES, ("attach complete\n"));