toshiba_bluetooth: Add missing newline in toshiba_bluetooth_present function
authorAzael Avalos <coproscefalo@gmail.com>
Mon, 16 Nov 2015 03:33:47 +0000 (20:33 -0700)
committerDarren Hart <dvhart@linux.intel.com>
Fri, 20 Nov 2015 23:20:08 +0000 (15:20 -0800)
This patch simply adds a missing newline in the error string printed
by the toshiba_bluetooth_present function.

This is just a cosmetic change, no functionality was changed.

Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/toshiba_bluetooth.c

index c5e45089ac51d3c51c26522b3b07b085f38da750..5db495dd018e9595fac55f159e6f5a2e5fcd9100 100644 (file)
@@ -78,7 +78,7 @@ static int toshiba_bluetooth_present(acpi_handle handle)
         */
        result = acpi_evaluate_integer(handle, "_STA", NULL, &bt_present);
        if (ACPI_FAILURE(result)) {
-               pr_err("ACPI call to query Bluetooth presence failed");
+               pr_err("ACPI call to query Bluetooth presence failed\n");
                return -ENXIO;
        } else if (!bt_present) {
                pr_info("Bluetooth device not present\n");