summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@cyngn.com>2016-06-08 11:29:57 -0700
committerJessica Wagantall <jwagantall@cyngn.com>2016-07-07 14:16:30 -0700
commitf1eada5b7e2bc10586381d5236e6abb814694d83 (patch)
treeb1e7c50236434f81d7afc6206cbd6f5f3d96d73b
parent8c6a7c500e1a160b3fffaf1ffd5d826659fdffe5 (diff)
downloadandroid_system_bt-f1eada5b7e2bc10586381d5236e6abb814694d83.tar.gz
android_system_bt-f1eada5b7e2bc10586381d5236e6abb814694d83.tar.bz2
android_system_bt-f1eada5b7e2bc10586381d5236e6abb814694d83.zip
Fix call to enable(bool) which changed as part of
049eae4ff84fbbdbc4b0068cb2a217f9f0460bf4 Ticket: CYNGNOS-3020 Change-Id: I86fc416dda42bfdf5581ed5f60aef5d00800a59b
-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);
}