diff options
| author | tturney <tturney@google.com> | 2015-07-28 17:32:50 -0700 |
|---|---|---|
| committer | tturney <tturney@google.com> | 2015-07-29 11:18:43 -0700 |
| commit | 955f8769d470fb2bbb8a1d44a39ce8e104085d9a (patch) | |
| tree | f0f3f29639f31b896eebcb1be7c598be934a62a0 /src/upio.c | |
| parent | 0bf922506a54bed1d2c816588a2201879dc320bb (diff) | |
| download | android_hardware_broadcom_libbt-955f8769d470fb2bbb8a1d44a39ce8e104085d9a.tar.gz android_hardware_broadcom_libbt-955f8769d470fb2bbb8a1d44a39ce8e104085d9a.tar.bz2 android_hardware_broadcom_libbt-955f8769d470fb2bbb8a1d44a39ce8e104085d9a.zip | |
Remove the optimization for unarming the timer
Bug: 22388460
Change-Id: Ib45d9cd36725c7cb9b82540cf395bd21f5d35fd4
Diffstat (limited to 'src/upio.c')
| -rw-r--r-- | src/upio.c | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -446,7 +446,7 @@ void upio_set(uint8_t pio, uint8_t action, uint8_t polarity) UPIODBG("BT_WAKE is %s already", lpm_state[action]); #if (BT_WAKE_VIA_PROC == TRUE) - if (lpm_proc_cb.btwrite_active == TRUE) { + if (lpm_proc_cb.btwrite_active == TRUE) /* * The proc btwrite node could have not been updated for * certain time already due to heavy downstream path flow. @@ -456,10 +456,7 @@ void upio_set(uint8_t pio, uint8_t action, uint8_t polarity) * a 10sec internal in-activity timeout timer before it * attempts to deassert BT_WAKE line. */ - /* re-arm user space timer */ - upio_start_stop_timer(action); return; - } #else return; #endif |
