Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 260e0eca authored by Azael Avalos's avatar Azael Avalos Committed by Darren Hart
Browse files

toshiba_bluetooth: Add missing newline in toshiba_bluetooth_present function



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: default avatarAzael Avalos <coproscefalo@gmail.com>
Signed-off-by: default avatarDarren Hart <dvhart@linux.intel.com>
parent 8005c49d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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");