summaryrefslogtreecommitdiffstats
path: root/stack/rfcomm
diff options
context:
space:
mode:
authorSharvil Nanavati <sharvil@google.com>2015-03-02 14:56:24 -0800
committerAndre Eisenbach <eisenbach@google.com>2015-03-16 16:51:42 -0700
commitc0a87fe60f79ddf41595a30e75a77f43c19cd323 (patch)
tree64646dc0a847f5500d97720f24c659ea7e3605d6 /stack/rfcomm
parent4c33920131301cc3452996f4d6285db381fd7d69 (diff)
downloadandroid_system_bt-c0a87fe60f79ddf41595a30e75a77f43c19cd323.tar.gz
android_system_bt-c0a87fe60f79ddf41595a30e75a77f43c19cd323.tar.bz2
android_system_bt-c0a87fe60f79ddf41595a30e75a77f43c19cd323.zip
Remove GKI timers
Diffstat (limited to 'stack/rfcomm')
-rw-r--r--stack/rfcomm/rfc_l2cap_if.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stack/rfcomm/rfc_l2cap_if.c b/stack/rfcomm/rfc_l2cap_if.c
index 9c11d060a..3207a0345 100644
--- a/stack/rfcomm/rfc_l2cap_if.c
+++ b/stack/rfcomm/rfc_l2cap_if.c
@@ -105,7 +105,7 @@ void RFCOMM_ConnectInd (BD_ADDR bd_addr, UINT16 lcid, UINT16 psm, UINT8 id)
RFCOMM_TRACE_DEBUG ("RFCOMM_ConnectInd start timer for collision, initiator's LCID(0x%x), acceptor's LCID(0x%x)",
p_mcb->lcid, p_mcb->pending_lcid);
- rfc_timer_start(p_mcb, (UINT16)(GKI_get_tick_count()%10 + 2));
+ rfc_timer_start(p_mcb, (UINT16)(GKI_get_os_tick_count()%10 + 2));
return;
}
else