From 9a16b8bf7b4c19515d067485abb963447325a587 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 16 Jan 2024 14:00:27 +0000 Subject: [PATCH] monitor: const annotate util_ltv_debugger instances and API --- monitor/att.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/monitor/att.c b/monitor/att.c index 9db273223..ea47312c8 100644 --- a/monitor/att.c +++ b/monitor/att.c @@ -683,7 +683,8 @@ static void print_ltv(const char *str, void *user_data) } static bool print_ase_lv(const struct l2cap_frame *frame, const char *label, - struct util_ltv_debugger *decoder, size_t decoder_len) + const struct util_ltv_debugger *decoder, + size_t decoder_len) { struct bt_hci_lv_data *lv; @@ -705,7 +706,8 @@ static bool print_ase_lv(const struct l2cap_frame *frame, const char *label, } static bool print_ase_cc(const struct l2cap_frame *frame, const char *label, - struct util_ltv_debugger *decoder, size_t decoder_len) + const struct util_ltv_debugger *decoder, + size_t decoder_len) { return print_ase_lv(frame, label, decoder, decoder_len); } @@ -813,7 +815,7 @@ done: print_hex_field(" Data", frame.data, frame.size); } -struct util_ltv_debugger ase_metadata_table[] = { +static const struct util_ltv_debugger ase_metadata_table[] = { UTIL_LTV_DEBUG(0x01, ase_debug_preferred_context), UTIL_LTV_DEBUG(0x02, ase_debug_context), UTIL_LTV_DEBUG(0x03, ase_debug_program_info), @@ -994,7 +996,7 @@ done: print_hex_field(" Data", frame.data, frame.size); } -struct util_ltv_debugger pac_cap_table[] = { +static const struct util_ltv_debugger pac_cap_table[] = { UTIL_LTV_DEBUG(0x01, pac_decode_freq), UTIL_LTV_DEBUG(0x02, pac_decode_duration), UTIL_LTV_DEBUG(0x03, pac_decode_channels), @@ -1336,7 +1338,7 @@ done: print_hex_field(" Data", frame.data, frame.size); } -struct util_ltv_debugger ase_cc_table[] = { +static const struct util_ltv_debugger ase_cc_table[] = { UTIL_LTV_DEBUG(0x01, ase_debug_freq), UTIL_LTV_DEBUG(0x02, ase_debug_duration), UTIL_LTV_DEBUG(0x03, ase_debug_location), @@ -2769,7 +2771,7 @@ static const struct big_enc_decoder { static bool print_subgroup_lv(const struct l2cap_frame *frame, const char *label, - struct util_ltv_debugger *debugger, + const struct util_ltv_debugger *debugger, size_t debugger_len) { struct bt_hci_lv_data *lv; -- 2.47.3