Remove the file activation logic to insmod the artik530 64/180264/1
authorDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 28 May 2018 03:25:40 +0000 (12:25 +0900)
committerDoHyun Pyun <dh79.pyun@samsung.com>
Mon, 28 May 2018 03:25:40 +0000 (12:25 +0900)
Change-Id: I267a427ce88d93576a78f2f0144080bc16ec2207
Signed-off-by: DoHyun Pyun <dh79.pyun@samsung.com>
bt-core/bt-core-adapter.c
bt-core/include/bt-core-adapter.h

index 644f3a3..9c68257 100644 (file)
@@ -189,17 +189,6 @@ static int __bt_stack_up(void)
                return -1;
        }
 
-       /* We need to insert BT driver module by using 'insmod' in case of ARTIK530,
-        * and 'insmod' should be executed by systemd not bt-core. */
-       ret = __bt_call_systemact_service(BT_SYSTEMACT_BT_DRIVER_INSMOD);
-       if (ret < 0) {
-               BT_ERR("Failed to call systemact service");
-               return -1;
-       } else {
-               /* Insmod should run before bt-stack-up.sh command */
-               usleep(1000 * 200); /* 200ms */
-       }
-
        ret = __execute_command("/usr/etc/bluetooth/bt-stack-up.sh", NULL);
        if (ret < 0) {
                BT_ERR("Failed to run script");
index 603b024..91e6159 100755 (executable)
@@ -40,7 +40,6 @@ extern "C" {
 #define BT_SYSTEMACT_BLUETOOTH_SHARE_START "/run/.bluetooth_share_start"
 #define BT_SYSTEMACT_RFKILL_UNBLOCK "/run/.rfkill_unblock"
 #define BT_SYSTEMACT_RFKILL_BLOCK "/run/.rfkill_block"
-#define BT_SYSTEMACT_BT_DRIVER_INSMOD "/run/.bt_driver_insmod"
 
 #define BT_CORE_TYPE (bt_core_get_type())