acpiphp_ibm: add missing '\n' to error message
authorJeremy Fitzhardinge <[email protected]>
Sat, 25 Aug 2007 05:31:45 +0000 (01:31 -0400)
committerLen Brown <[email protected]>
Sat, 25 Aug 2007 05:39:13 +0000 (01:39 -0400)
Add missing \n to error in ibm_find_acpi_device.

Signed-off-by: Jeremy Fitzhardinge <[email protected]>
Cc: Kristen Carlson Accardi <[email protected]>
Cc: Greg Kroah-Hartman <[email protected]>
Cc: Adrian Bunk <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Len Brown <[email protected]>
drivers/pci/hotplug/acpiphp_ibm.c

index 70db38c0ced9f6586ed6356e4bc8ef78c6cd4235..80544d87437b1f19aff81fefe1aacb6efe44134e 100644 (file)
@@ -399,7 +399,7 @@ static acpi_status __init ibm_find_acpi_device(acpi_handle handle,
 
        status = acpi_get_object_info(handle, &info_buffer);
        if (ACPI_FAILURE(status)) {
-               err("%s:  Failed to get device information", __FUNCTION__);
+               err("%s:  Failed to get device information\n", __FUNCTION__);
                return 0;
        }
        info.hardware_id.value[sizeof(info.hardware_id.value) - 1] = '\0';