Don't add the recovery logic into the platform image 15/92415/1 accepted/tizen/3.0/ivi/20161028.134111 accepted/tizen/3.0/mobile/20161028.133226 accepted/tizen/3.0/tv/20161028.133536 accepted/tizen/3.0/wearable/20161028.133822 accepted/tizen/common/20161017.170157 accepted/tizen/ivi/20161017.080428 accepted/tizen/mobile/20161017.080339 accepted/tizen/tv/20161017.080356 accepted/tizen/wearable/20161017.080411 submit/tizen/20161017.024543 submit/tizen_3.0/20161028.062323 submit/tizen_3.0/20161028.082423 submit/tizen_3.0_common/20161104.104000
authorDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 17 Oct 2016 02:38:09 +0000 (11:38 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 17 Oct 2016 02:38:09 +0000 (11:38 +0900)
Change-Id: I49fb518601558212ff9b6f6d94fa90a9eee245df
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
bt-service/bt-service-event-receiver.c

index ce0ef6af6c5d2cf34279ef4cd9dfdfd68be06ea3..7aaf9c5bc5b175f7f22c89c6d329594d7742b24f 100644 (file)
@@ -581,10 +581,16 @@ void _bt_handle_adapter_event(GVariant *msg, const char *member)
                g_free(address);
        } else if (strcasecmp(member, BT_HARDWARE_ERROR) == 0) {
                BT_ERR_C("Hardware error received from BLUEZ");
+/* Don't add the recovery logic into platform */
+#if 0
                _bt_recover_adapter();
+#endif
        } else if (strcasecmp(member, BT_TX_TIMEOUT_ERROR) == 0) {
                BT_ERR_C("Tx timeout error received from BLUEZ");
+/* Don't add the recovery logic into platform */
+#if 0
                _bt_recover_adapter();
+#endif
        }
        BT_DBG("-");
 }