diff options
author | Syed Ibrahim M <syedibra@broadcom.com> | 2012-08-17 07:02:18 -0700 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-08-23 12:47:02 -0700 |
commit | 2d85ba49fc44bf713bd3e13aeb97f496196af4e3 (patch) | |
tree | 64e5ef34db063fd52301b72dc37f5469585d635e /btif | |
parent | 3cef628c3327479a58e37ae7a641e1c24f393fc8 (diff) | |
download | external_bluetooth_bluedroid-2d85ba49fc44bf713bd3e13aeb97f496196af4e3.zip external_bluetooth_bluedroid-2d85ba49fc44bf713bd3e13aeb97f496196af4e3.tar.gz external_bluetooth_bluedroid-2d85ba49fc44bf713bd3e13aeb97f496196af4e3.tar.bz2 |
Remove attr_mask field from BTA_HH_ADD_DEV_EVT cb
Remove attr_mask field from bta_hh_api.c and bta_hh_act.c for
BTA_HH_ADD_DEV_EVT callback as stack updates the attribute mask
to the stack callout function bta_hh_co_open()
Change-Id: I1e450a210a63359c7ae30551fd3c468f0e109fda
Diffstat (limited to 'btif')
-rwxr-xr-x | btif/src/btif_hh.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/btif/src/btif_hh.c b/btif/src/btif_hh.c index 76d8ec3..2e9387a 100755 --- a/btif/src/btif_hh.c +++ b/btif/src/btif_hh.c @@ -740,7 +740,6 @@ static void btif_hh_upstreams_evt(UINT16 event, char* p_param) if (memcmp(btif_hh_cb.added_devices[i].bd_addr.address, p_data->dev_info.bda, 6) == 0) { if (p_data->dev_info.status == BTA_HH_OK) { btif_hh_cb.added_devices[i].dev_handle = p_data->dev_info.handle; - btif_hh_cb.added_devices[i].attr_mask = p_data->dev_info.attr_mask; } else { memset(btif_hh_cb.added_devices[i].bd_addr.address, 0, 6); |