diff options
| author | Akshay Thakker <aksh@google.com> | 2016-03-17 01:47:01 +0000 |
|---|---|---|
| committer | The Android Automerger <android-build@android.com> | 2016-03-16 19:48:31 -0700 |
| commit | 3ddadd2c27e6a22e2d2b205e9ff73d13e0c35cc5 (patch) | |
| tree | 8bcc7544e6640d5be430db2784164d3f83772f77 /device | |
| parent | 3f448e48af795e3017f9fc792c411c33e8b2c9c1 (diff) | |
| download | android_system_bt-3ddadd2c27e6a22e2d2b205e9ff73d13e0c35cc5.tar.gz android_system_bt-3ddadd2c27e6a22e2d2b205e9ff73d13e0c35cc5.tar.bz2 android_system_bt-3ddadd2c27e6a22e2d2b205e9ff73d13e0c35cc5.zip | |
DO NOT SUBMIT Revert "DO NOT MERGE Blacklist devices for absolute volume control"
This reverts commit 8fe9b6c9f7538de91c1a3aded53518ca8c6d2fc0.
Change-Id: Ic0aa70bcaec57bf14afa20ac5304e7164174b566
Diffstat (limited to 'device')
| -rw-r--r-- | device/include/interop.h | 7 | ||||
| -rw-r--r-- | device/include/interop_database.h | 18 | ||||
| -rw-r--r-- | device/src/interop.c | 1 |
3 files changed, 2 insertions, 24 deletions
diff --git a/device/include/interop.h b/device/include/interop.h index 883e24532..b2b01bb4e 100644 --- a/device/include/interop.h +++ b/device/include/interop.h @@ -34,12 +34,7 @@ typedef enum { // requiring multiple retries to complete pairing. To avoid degrading the user // experience for those devices, automatically re-try pairing if page // timeouts are received during pairing. - INTEROP_AUTO_RETRY_PAIRING, - - // Devices requiring this workaround do not handle Bluetooth Absolute Volume - // control correctly, leading to undesirable (potentially harmful) volume levels - // or general lack of controlability. - INTEROP_DISABLE_ABSOLUTE_VOLUME + INTEROP_AUTO_RETRY_PAIRING } interop_feature_t; // Check if a given |addr| matches a known interoperability workaround as identified diff --git a/device/include/interop_database.h b/device/include/interop_database.h index 58d5ba5d1..9148f6845 100644 --- a/device/include/interop_database.h +++ b/device/include/interop_database.h @@ -43,21 +43,5 @@ static const interop_entry_t interop_database[] = { {{0x80, 0xe4, 0xda, 0x70, 0,0}, 4, INTEROP_DISABLE_LE_SECURE_CONNECTIONS}, // BMW car kits (Harman/Becker) - {{0x9c, 0xdf, 0x03, 0,0,0}, 3, INTEROP_AUTO_RETRY_PAIRING}, - - // JayBird BlueBuds X - low granularity on volume control - {{0x44, 0x5e, 0xf3, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, - - // LG Tone HBS-730 - unacceptably loud volume - {{0x00, 0x18, 0x6b, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, - {{0xb8, 0xad, 0x3e, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, - - // LG Tone HV-800 - unacceptably loud volume - {{0xa0, 0xe9, 0xdb, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, - - // SOL REPUBLIC Tracks Air - unable to adjust volume back off from max - {{0xa4, 0x15, 0x66, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, - - // VW Car Kit - not enough granularity with volume - {{0x00, 0x26, 0x7e, 0,0,0}, 3, INTEROP_DISABLE_ABSOLUTE_VOLUME}, + {{0x9c, 0xdf, 0x03, 0,0,0}, 3, INTEROP_AUTO_RETRY_PAIRING} }; diff --git a/device/src/interop.c b/device/src/interop.c index f25348a32..605d7be05 100644 --- a/device/src/interop.c +++ b/device/src/interop.c @@ -96,7 +96,6 @@ static const char* interop_feature_string_(const interop_feature_t feature) { switch (feature) { CASE_RETURN_STR(INTEROP_DISABLE_LE_SECURE_CONNECTIONS) CASE_RETURN_STR(INTEROP_AUTO_RETRY_PAIRING) - CASE_RETURN_STR(INTEROP_DISABLE_ABSOLUTE_VOLUME) } return "UNKNOWN"; |
