diff options
author | Sharvil Nanavati <sharvil@google.com> | 2015-03-02 14:56:24 -0800 |
---|---|---|
committer | Andre Eisenbach <eisenbach@google.com> | 2015-03-16 16:51:42 -0700 |
commit | c0a87fe60f79ddf41595a30e75a77f43c19cd323 (patch) | |
tree | 64646dc0a847f5500d97720f24c659ea7e3605d6 /stack/rfcomm | |
parent | 4c33920131301cc3452996f4d6285db381fd7d69 (diff) | |
download | android_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.c | 2 |
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 |