--- drivers/acpi/bus.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) Index: linux-2.6/drivers/acpi/bus.c =================================================================== --- linux-2.6.orig/drivers/acpi/bus.c +++ linux-2.6/drivers/acpi/bus.c @@ -681,9 +681,13 @@ static void acpi_bus_notify(acpi_handle { struct acpi_device *device = NULL; struct acpi_driver *driver; + struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; + struct acpi_buffer name_buffer = { ACPI_ALLOCATE_BUFFER, NULL }; - ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Notification %#02x to handle %p\n", - type, handle)); + acpi_get_name(handle, ACPI_FULL_PATHNAME, &name_buffer); + + printk(KERN_INFO "Notification %#02x to device %s\n", + type, (char *)name_buffer.pointer); blocking_notifier_call_chain(&acpi_bus_notify_list, type, (void *)handle);