Commit 28e476d7 authored by Azael Avalos's avatar Azael Avalos Committed by Darren Hart

platform/x86: toshiba_bluetooth: Decouple an error checking status code

This patch simply decouples the error checking of the ACPI status and
the actual BT status, as those two were nested in an if/else check, but
are completely unrelated.
Signed-off-by: default avatarAzael Avalos <coproscefalo@gmail.com>
Signed-off-by: default avatarDarren Hart <dvhart@linux.intel.com>
parent baae5f91
...@@ -80,7 +80,9 @@ static int toshiba_bluetooth_present(acpi_handle handle) ...@@ -80,7 +80,9 @@ static int toshiba_bluetooth_present(acpi_handle handle)
if (ACPI_FAILURE(result)) { if (ACPI_FAILURE(result)) {
pr_err("ACPI call to query Bluetooth presence failed\n"); pr_err("ACPI call to query Bluetooth presence failed\n");
return -ENXIO; return -ENXIO;
} else if (!bt_present) { }
if (!bt_present) {
pr_info("Bluetooth device not present\n"); pr_info("Bluetooth device not present\n");
return -ENODEV; return -ENODEV;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment