diff options
author | Jakub Pawlowski <jpawlowski@google.com> | 2016-09-26 14:05:18 -0700 |
---|---|---|
committer | Jakub Pawlowski <jpawlowski@google.com> | 2016-09-26 14:07:11 -0700 |
commit | f2e3bea844ea343c80c219f2dc59a75ea57f50c2 (patch) | |
tree | 933b12827a65a755fc0eeb7392a2d4ba96a72dd5 | |
parent | 58c27b48aa61db10e2d98f5752ecf96a50dc764c (diff) | |
download | android-system-bt-f2e3bea844ea343c80c219f2dc59a75ea57f50c2.tar.gz android-system-bt-f2e3bea844ea343c80c219f2dc59a75ea57f50c2.tar.xz |
Fix unnecessary error message during GATT discovery
Bug: 31637098
Change-Id: Ib2545e7827bd338d2e22c88836818fce23e7a057
-rw-r--r-- | btif/src/btif_gatt_client.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/btif/src/btif_gatt_client.c b/btif/src/btif_gatt_client.c index c70fa49..7ad4f08 100644 --- a/btif/src/btif_gatt_client.c +++ b/btif/src/btif_gatt_client.c @@ -497,6 +497,12 @@ static void btif_gattc_upstreams_evt(uint16_t event, char* p_param) break; } + case BTA_GATTC_SEARCH_RES_EVT: + { + /* Do nothing */ + break; + } + case BTA_GATTC_READ_DESCR_EVT: { btgatt_read_params_t data; |