Signed-off-by: Thomas Renninger <trenn@xxxxxxx> --- drivers/acpi/video.c | 11 +++++------ 1 files changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c index 7abd326..90ab74a 100644 --- a/drivers/acpi/video.c +++ b/drivers/acpi/video.c @@ -1540,8 +1540,8 @@ acpi_video_bus_get_one_device(struct acpi_device *device, acpi_video_device_notify, data); if (ACPI_FAILURE(status)) { - ACPI_DEBUG_PRINT((ACPI_DB_ERROR, - "Error installing notify handler\n")); + ACPI_EXCEPTION((DB_INFO, status, + "Error installing notify handler\n")); if(data->brightness) kfree(data->brightness->levels); kfree(data->brightness); @@ -1755,8 +1755,7 @@ acpi_video_bus_get_devices(struct acpi_video_bus *video, status = acpi_video_bus_get_one_device(dev, video); if (ACPI_FAILURE(status)) { - ACPI_DEBUG_PRINT((ACPI_DB_WARN, - "Cant attach device")); + printk(KERN_ERR "Cant attach device [%d]\n", status); continue; } } @@ -2013,8 +2012,8 @@ static int acpi_video_bus_add(struct acpi_device *device) ACPI_DEVICE_NOTIFY, acpi_video_bus_notify, video); if (ACPI_FAILURE(status)) { - ACPI_DEBUG_PRINT((ACPI_DB_ERROR, - "Error installing notify handler\n")); + ACPI_EXCEPTION((DB_INFO, status, + "Error installing notify handler\n")); error = -ENODEV; goto err_stop_video; } -- 1.5.4.5 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html