File tree 2 files changed +5
-5
lines changed
tests/bluetooth/tester/src/audio
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ struct btp_bap_bis_found_ev {
253
253
} __packed ;
254
254
255
255
#define BTP_BAP_EV_BIS_SYNCED 0x86
256
- struct btp_bap_bis_syned_ev {
256
+ struct btp_bap_bis_synced_ev {
257
257
bt_addr_le_t address ;
258
258
uint8_t broadcast_id [BT_AUDIO_BROADCAST_ID_SIZE ];
259
259
uint8_t bis_id ;
Original file line number Diff line number Diff line change @@ -163,10 +163,10 @@ static struct btp_bap_broadcast_remote_source *remote_broadcaster_find_by_sink(
163
163
return NULL ;
164
164
}
165
165
166
- static void btp_send_bis_syced_ev (const bt_addr_le_t * address , uint32_t broadcast_id ,
167
- uint8_t bis_id )
166
+ static void btp_send_bis_synced_ev (const bt_addr_le_t * address , uint32_t broadcast_id ,
167
+ uint8_t bis_id )
168
168
{
169
- struct btp_bap_bis_syned_ev ev ;
169
+ struct btp_bap_bis_synced_ev ev ;
170
170
171
171
bt_addr_le_copy (& ev .address , address );
172
172
sys_put_le24 (broadcast_id , ev .broadcast_id );
@@ -194,7 +194,7 @@ static void stream_started(struct bt_bap_stream *stream)
194
194
b_stream -> bis_synced = true;
195
195
broadcaster = & remote_broadcast_sources [b_stream -> source_id ];
196
196
197
- btp_send_bis_syced_ev (& broadcaster -> address , broadcaster -> broadcast_id , b_stream -> bis_id );
197
+ btp_send_bis_synced_ev (& broadcaster -> address , broadcaster -> broadcast_id , b_stream -> bis_id );
198
198
}
199
199
200
200
static void stream_stopped (struct bt_bap_stream * stream , uint8_t reason )
You can’t perform that action at this time.
0 commit comments