1
0
Fork 0

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: Azael Avalos <coproscefalo@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
steinar/wifi_calib_4_9_kernel
Azael Avalos 2016-09-07 09:28:15 -06:00 committed by Darren Hart
parent baae5f9157
commit 28e476d743
1 changed files with 3 additions and 1 deletions

View File

@ -80,7 +80,9 @@ static int toshiba_bluetooth_present(acpi_handle handle)
if (ACPI_FAILURE(result)) {
pr_err("ACPI call to query Bluetooth presence failed\n");
return -ENXIO;
} else if (!bt_present) {
}
if (!bt_present) {
pr_info("Bluetooth device not present\n");
return -ENODEV;
}