Skip to content

Commit 4d848eb

Browse files
Thalleykartben
authored andcommitted
tests: Bluetooth: Tester: Fix synced typos
Fixed typos syned -> synced and syced -> synced. Signed-off-by: Emil Gydesen <[email protected]>
1 parent faceffb commit 4d848eb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/bluetooth/tester/src/audio/btp/btp_bap.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ struct btp_bap_bis_found_ev {
253253
} __packed;
254254

255255
#define BTP_BAP_EV_BIS_SYNCED 0x86
256-
struct btp_bap_bis_syned_ev {
256+
struct btp_bap_bis_synced_ev {
257257
bt_addr_le_t address;
258258
uint8_t broadcast_id[BT_AUDIO_BROADCAST_ID_SIZE];
259259
uint8_t bis_id;

tests/bluetooth/tester/src/audio/btp_bap_broadcast.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -163,10 +163,10 @@ static struct btp_bap_broadcast_remote_source *remote_broadcaster_find_by_sink(
163163
return NULL;
164164
}
165165

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)
168168
{
169-
struct btp_bap_bis_syned_ev ev;
169+
struct btp_bap_bis_synced_ev ev;
170170

171171
bt_addr_le_copy(&ev.address, address);
172172
sys_put_le24(broadcast_id, ev.broadcast_id);
@@ -194,7 +194,7 @@ static void stream_started(struct bt_bap_stream *stream)
194194
b_stream->bis_synced = true;
195195
broadcaster = &remote_broadcast_sources[b_stream->source_id];
196196

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);
198198
}
199199

200200
static void stream_stopped(struct bt_bap_stream *stream, uint8_t reason)

0 commit comments

Comments
 (0)