Diff between 86905a896889b7f681aeda7bc80e74b5378c82f2 and c31615b82b28c6f107b5a5d5de45d144fc4e6aa7

Changed Files

File Additions Deletions Status
android/bluetooth.c +4 -4 modified

Full Patch

diff --git a/android/bluetooth.c b/android/bluetooth.c
index 2a75a22..cacacb6 100644
--- a/android/bluetooth.c
+++ b/android/bluetooth.c
@@ -2178,7 +2178,7 @@ static void handle_get_adapter_prop_cmd(const void *buf, uint16_t len)
 		break;
 	}
 
-	if (status != HAL_STATUS_SUCCESS && status != HAL_STATUS_DONE)
+	if (status != HAL_STATUS_SUCCESS)
 		error("Failed to get adapter property (type %u status %u)",
 							cmd->type, status);
 
@@ -2329,7 +2329,7 @@ static void handle_set_adapter_prop_cmd(const void *buf, uint16_t len)
 		break;
 	}
 
-	if (status != HAL_STATUS_SUCCESS && status != HAL_STATUS_DONE)
+	if (status != HAL_STATUS_SUCCESS)
 		error("Failed to set adapter property (type %u status %u)",
 							cmd->type, status);
 
@@ -2805,7 +2805,7 @@ static void handle_get_remote_device_prop_cmd(const void *buf, uint16_t len)
 		break;
 	}
 
-	if (status != HAL_STATUS_SUCCESS && status != HAL_STATUS_DONE)
+	if (status != HAL_STATUS_SUCCESS)
 		error("Failed to get device property (type %u status %u)",
 							cmd->type, status);
 
@@ -2873,7 +2873,7 @@ static void handle_set_remote_device_prop_cmd(const void *buf, uint16_t len)
 		break;
 	}
 
-	if (status != HAL_STATUS_SUCCESS && status != HAL_STATUS_DONE)
+	if (status != HAL_STATUS_SUCCESS)
 		error("Failed to set device property (type %u status %u)",
 							cmd->type, status);