summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/blegatt_test/gatt_test.c2
-rw-r--r--test/l2test_ertm/l2test_ertm.c2
-rw-r--r--test/mcap_tool/mcap_tool.c2
-rw-r--r--test/rfcommtest/rfcommtest.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/test/blegatt_test/gatt_test.c b/test/blegatt_test/gatt_test.c
index 6943d3ba0..9e4dc5170 100644
--- a/test/blegatt_test/gatt_test.c
+++ b/test/blegatt_test/gatt_test.c
@@ -1278,7 +1278,7 @@ void bdt_enable(void)
bdt_log("Bluetooth is already enabled");
return;
}
- status = sBtInterface->enable();
+ status = sBtInterface->enable(false);
check_return_status(status);
}
diff --git a/test/l2test_ertm/l2test_ertm.c b/test/l2test_ertm/l2test_ertm.c
index e4f9664f4..da8d28fff 100644
--- a/test/l2test_ertm/l2test_ertm.c
+++ b/test/l2test_ertm/l2test_ertm.c
@@ -660,7 +660,7 @@ void bdt_enable(void)
printf("Bluetooth is already enabled\n");
return;
}
- status = sBtInterface->enable();
+ status = sBtInterface->enable(false);
return;
}
diff --git a/test/mcap_tool/mcap_tool.c b/test/mcap_tool/mcap_tool.c
index 843703137..a14c36366 100644
--- a/test/mcap_tool/mcap_tool.c
+++ b/test/mcap_tool/mcap_tool.c
@@ -779,7 +779,7 @@ void bdt_enable(void)
bdt_log("Bluetooth is already enabled");
return;
}
- status = sBtInterface->enable();
+ status = sBtInterface->enable(false);
check_return_status(status);
}
diff --git a/test/rfcommtest/rfcommtest.c b/test/rfcommtest/rfcommtest.c
index 73b15cd13..df5ccc1fb 100644
--- a/test/rfcommtest/rfcommtest.c
+++ b/test/rfcommtest/rfcommtest.c
@@ -675,7 +675,7 @@ void bdt_enable(void)
bdt_log("Bluetooth is already enabled");
return;
}
- status = sBtInterface->enable();
+ status = sBtInterface->enable(false);
check_return_status(status);
}