Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1269837
| From | Azael Avalos <coproscefalo@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH] toshiba_bluetooth: Add missing newline in toshiba_bluetooth_present function |
| Date | 2015-11-16 04:40 +0100 |
| Message-ID | <qviO6-20s-19@gated-at.bofh.it> (permalink) |
| References | <qviO5-20s-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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>
---
drivers/platform/x86/toshiba_bluetooth.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/platform/x86/toshiba_bluetooth.c b/drivers/platform/x86/toshiba_bluetooth.c
index c5e4508..5db495d 100644
--- a/drivers/platform/x86/toshiba_bluetooth.c
+++ b/drivers/platform/x86/toshiba_bluetooth.c
@@ -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");
--
2.6.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
[PATCH 1/1] toshiba_acpi: Propagate the hotkey value via genetlink Azael Avalos <coproscefalo@gmail.com> - 2015-11-16 04:40 +0100
[PATCH] toshiba_bluetooth: Add missing newline in toshiba_bluetooth_present function Azael Avalos <coproscefalo@gmail.com> - 2015-11-16 04:40 +0100
Re: [PATCH] toshiba_bluetooth: Add missing newline in toshiba_bluetooth_present function Darren Hart <dvhart@infradead.org> - 2015-11-21 00:30 +0100
Re: [PATCH 1/1] toshiba_acpi: Propagate the hotkey value via genetlink Darren Hart <dvhart@infradead.org> - 2015-11-21 00:20 +0100
Re: [PATCH 1/1] toshiba_acpi: Propagate the hotkey value via genetlink Azael Avalos <coproscefalo@gmail.com> - 2015-11-21 01:10 +0100
Re: [PATCH 1/1] toshiba_acpi: Propagate the hotkey value via genetlink Darren Hart <dvhart@infradead.org> - 2015-11-21 01:50 +0100
csiph-web