summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGOWTHAM BHARANI MUDILI <quic_gmudili@quicinc.com>2023-03-15 16:52:14 -0700
committerGerrit - the friendly Code Review server <code-review@localhost>2023-03-31 01:15:21 -0700
commitf20503c97e19542e15f2e94b0d4fc21fed70dfa1 (patch)
tree90a6b5fec540c456caec4ec99e8dc290cfb95943
parentec4b7f2e4e3252c60be72cf265ca5d26d993113c (diff)
Update bluetooth interface for T-QPR2
CRs-Fixed: 3451360 Change-Id: I06385cb8760eb3af02a885ba71fba74f626dc10e
-rw-r--r--btif/src/bluetooth.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/btif/src/bluetooth.cc b/btif/src/bluetooth.cc
index da8524112..9ad80e043 100644
--- a/btif/src/bluetooth.cc
+++ b/btif/src/bluetooth.cc
@@ -557,6 +557,10 @@ static bool allow_low_latency_audio(bool allowed, const RawAddress& address) {
return false;
}
+static void metadata_changed(const RawAddress& remote_bd_addr, int key,
+ std::vector<uint8_t> value) {
+}
+
EXPORT_SYMBOL bt_interface_t bluetoothInterface = {
sizeof(bluetoothInterface),
init,
@@ -598,6 +602,7 @@ EXPORT_SYMBOL bt_interface_t bluetoothInterface = {
generate_local_oob_data,
allow_low_latency_audio,
clear_event_filter,
+ metadata_changed,
};
void invoke_oob_data_request_cb(tBT_TRANSPORT t, bool valid, Octet16 c,