summaryrefslogtreecommitdiffstats
path: root/btif/src/btif_hh.c
diff options
context:
space:
mode:
authorHemant Gupta <hemantg@codeaurora.org>2014-04-21 23:44:13 +0530
committerMatthew Xie <mattx@google.com>2014-05-06 01:14:23 -0700
commit8029dc8f0332d1135aa93e8e5daa46e3eb7b2500 (patch)
treed65bb7f961d28880c3adbf415c276a15da5d18b0 /btif/src/btif_hh.c
parent98248b56ceaec03c099f99eaa9096e36f15c28df (diff)
downloadandroid_system_bt-8029dc8f0332d1135aa93e8e5daa46e3eb7b2500.tar.gz
android_system_bt-8029dc8f0332d1135aa93e8e5daa46e3eb7b2500.tar.bz2
android_system_bt-8029dc8f0332d1135aa93e8e5daa46e3eb7b2500.zip
HID: Update SSR parameters during copy.
This patch correctly stores SSR parameters (max latency and min timeout) retrieved from remote device SDP record in NVRAM. Change-Id: I87d8b6181981090df21ab746deac7053a1d0e938
Diffstat (limited to 'btif/src/btif_hh.c')
-rw-r--r--btif/src/btif_hh.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/btif/src/btif_hh.c b/btif/src/btif_hh.c
index 34b119d31..f296c611e 100644
--- a/btif/src/btif_hh.c
+++ b/btif/src/btif_hh.c
@@ -587,6 +587,8 @@ BOOLEAN btif_hh_copy_hid_info(tBTA_HH_DEV_DSCP_INFO* dest , tBTA_HH_DEV_DSCP_INF
dest->product_id = src->product_id;
dest->version = src->version;
dest->ctry_code = src->ctry_code;
+ dest->ssr_max_latency = src->ssr_max_latency;
+ dest->ssr_min_tout = src->ssr_min_tout;
return TRUE;
}