summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorpramod kotreshappa <kpramod@codeaurora.org>2015-09-10 14:33:09 -0700
committerLinux Build Service Account <lnxbuild@localhost>2015-10-06 03:22:13 -0600
commit84f60eb3f2d7076c8f2d2ac099e5c38eb4753bbb (patch)
tree0a21fc957b6ccc0077d15e4d46699707eb08d579 /main
parentd7803ccf0dc5c4538dd9d735f5886627817313b2 (diff)
downloadandroid_system_bt-84f60eb3f2d7076c8f2d2ac099e5c38eb4753bbb.tar.gz
android_system_bt-84f60eb3f2d7076c8f2d2ac099e5c38eb4753bbb.tar.bz2
android_system_bt-84f60eb3f2d7076c8f2d2ac099e5c38eb4753bbb.zip
Bluetooth: Add parameter to indicate reason for ssr_cleanup
Add parameter to distinguish the reason for ssr_cleanup. Change-Id: If8dbc8bbeef430c7cea3d8c300285c9aef1222ec
Diffstat (limited to 'main')
-rw-r--r--main/bte_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/bte_main.c b/main/bte_main.c
index f15f8e4cd..648e46cd1 100644
--- a/main/bte_main.c
+++ b/main/bte_main.c
@@ -280,11 +280,11 @@ void bte_main_hci_send (BT_HDR *p_msg, UINT16 event)
** Returns None
**
******************************************************************************/
-void bte_ssr_cleanup(void)
+void bte_ssr_cleanup(int reason)
{
APPL_TRACE_DEBUG("%s", __FUNCTION__);
if (hci != NULL) {
- hci->ssr_cleanup();
+ hci->ssr_cleanup(reason);
} else {
APPL_TRACE_ERROR("%s hci is NULL", __FUNCTION__);
}