Merge "Enable advertising after gatt server is connected" into tizen
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / oal-manager.c
index 0d28d52..7ae3e67 100644 (file)
@@ -44,6 +44,7 @@
 
 static const hw_module_t* module = NULL;
 static const bt_interface_t *blued_api = NULL;
+static bluetooth_device_t* bt_device = NULL;
 
 static gboolean unload_libs(gpointer data);
 static bluetooth_device_t* load_hal_lib(void);
@@ -53,8 +54,6 @@ static int unload(const struct hw_module_t *module);
 
 oal_status_t oal_mgr_init_internal(void)
 {
-       bluetooth_device_t* bt_device;
-
        bt_device = load_hal_lib();
 
        if (bt_device == NULL) {
@@ -128,6 +127,7 @@ gboolean oal_lib_init(gpointer data)
 
 static gboolean unload_libs(gpointer data)
 {
+       bt_device->common.close((hw_device_t*)bt_device);
        unload((hw_module_t const*)module);
        module = NULL;
        return FALSE;
@@ -137,7 +137,6 @@ static bluetooth_device_t* load_hal_lib(void)
 {
        int err = 0;
        hw_device_t* device;
-       bluetooth_device_t* bt_device = NULL;
 
        BT_DBG("Loading HAL lib");
        if (module == NULL) {