From ebd7d2e4fe05d345a0ccd1304daaadab81f6e9be Mon Sep 17 00:00:00 2001 From: pramod kotreshappa Date: Wed, 10 Jun 2015 17:07:14 -0700 Subject: Bluetooth: Set property to stop filter driver Set start_hci property to stop filter driver to ensure filter driver is stopped during BT turn off. Change-Id: I976a8416ec9640ea3dd48bf9b82f597a4b3e0b4b CRs-fixed: 841915 --- libbt-vendor/src/bt_vendor_qcom.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libbt-vendor/src/bt_vendor_qcom.c b/libbt-vendor/src/bt_vendor_qcom.c index 6d10521..e52312d 100644 --- a/libbt-vendor/src/bt_vendor_qcom.c +++ b/libbt-vendor/src/bt_vendor_qcom.c @@ -261,8 +261,8 @@ void stop_hci_filter() { property_get("wc_transport.start_hci", value, "false"); if (strcmp(value, "false") == 0) { - ALOGV("%s: hci_filter has been stopped already", __func__); - return; + ALOGI("%s: hci_filter has been stopped already", __func__); +// return; } property_set("wc_transport.start_hci", "false"); @@ -279,7 +279,7 @@ void start_hci_filter() { property_get("wc_transport.start_hci", value, false); if (strcmp(value, "true") == 0) { - ALOGV("%s: hci_filter has been started already", __func__); + ALOGI("%s: hci_filter has been started already", __func__); return; } -- cgit v1.2.3