diff options
| author | pramod kotreshappa <kpramod@codeaurora.org> | 2015-06-10 17:07:14 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2015-06-23 11:10:41 -0700 |
| commit | ebd7d2e4fe05d345a0ccd1304daaadab81f6e9be (patch) | |
| tree | 15ea35b3580aec9b1f35395f14e501e955abd34a | |
| parent | 9cc0d561ff9e582ed917dff3afa6ef1fd665f468 (diff) | |
| download | android_hardware_qcom_bt-ebd7d2e4fe05d345a0ccd1304daaadab81f6e9be.tar.gz android_hardware_qcom_bt-ebd7d2e4fe05d345a0ccd1304daaadab81f6e9be.tar.bz2 android_hardware_qcom_bt-ebd7d2e4fe05d345a0ccd1304daaadab81f6e9be.zip | |
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
| -rw-r--r-- | libbt-vendor/src/bt_vendor_qcom.c | 6 |
1 files 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; } |
