diff options
author | Mattias Agren <magren@broadcom.com> | 2012-04-13 16:41:31 +0200 |
---|---|---|
committer | Matthew Xie <mattx@google.com> | 2012-07-14 11:19:16 -0700 |
commit | c0f2a0b5fc9e71518c4d12e7c8c3a86d7c65396c (patch) | |
tree | debcc5fea58831a553fd71f6dc9e46c87c4c4850 /main | |
parent | 8c75742a25906bd91a441d94fa529685f80de234 (diff) | |
download | external_bluetooth_bluedroid-c0f2a0b5fc9e71518c4d12e7c8c3a86d7c65396c.zip external_bluetooth_bluedroid-c0f2a0b5fc9e71518c4d12e7c8c3a86d7c65396c.tar.gz external_bluetooth_bluedroid-c0f2a0b5fc9e71518c4d12e7c8c3a86d7c65396c.tar.bz2 |
Resolved bluetooth on/off issue due to incorrect sequencing of chip power off and
vendor lib cleanup.
Change-Id: Ie4c4d06db38117175a1c53c9794d69b2f5147425
Diffstat (limited to 'main')
-rw-r--r-- | main/bte_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/bte_main.c b/main/bte_main.c index 3cf6a96..8ac3ff5 100644 --- a/main/bte_main.c +++ b/main/bte_main.c @@ -233,8 +233,8 @@ void bte_main_disable(void) if (bt_vendor_if) { - bt_vendor_if->set_power(BT_VENDOR_CHIP_PWR_OFF); bt_vendor_if->cleanup(); + bt_vendor_if->set_power(BT_VENDOR_CHIP_PWR_OFF); } } |