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-08 16:29:00 -0700
commit1f8f0768c4d26c280df5b8ab85642006d28097a4 (patch)
tree8257120c5e2f05959ab8aa10b4c010d59e79fd7d
parent50913d0c12605780cc0877dc50f73330d7a82b68 (diff)
downloadandroid_system_bt-stable/cm-13.0-ZNH2KB.tar.gz
android_system_bt-stable/cm-13.0-ZNH2KB.tar.bz2
android_system_bt-stable/cm-13.0-ZNH2KB.zip
Fix call to enable(bool) which changed as part ofstable/cm-13.0-ZNH2KB
049eae4ff84fbbdbc4b0068cb2a217f9f0460bf4 Ticket: CYNGNOS-3020 Change-Id: I86fc416dda42bfdf5581ed5f60aef5d00800a59b (cherry picked from commit 8ad0cbc1b683c01a5dae9f68875f0aacb34137c8)
-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);
}