Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions subsys/bluetooth/host/iso.c
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,6 @@ int bt_iso_chan_send(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t seq

iso_conn = chan->iso;

BT_ISO_DATA_DBG("send-iso (no ts)");
return conn_iso_send(iso_conn, buf, BT_ISO_TS_ABSENT);
}

Expand All @@ -983,7 +982,7 @@ int bt_iso_chan_send_ts(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t
return err;
}

BT_ISO_DATA_DBG("chan %p len %zu", chan, net_buf_frags_len(buf));
BT_ISO_DATA_DBG("chan %p len %zu ts %u", chan, net_buf_frags_len(buf), ts);

hdr = net_buf_push(buf, sizeof(*hdr));
hdr->ts = sys_cpu_to_le32(ts);
Expand All @@ -993,7 +992,6 @@ int bt_iso_chan_send_ts(struct bt_iso_chan *chan, struct net_buf *buf, uint16_t

iso_conn = chan->iso;

LOG_DBG("send-iso (ts)");
return conn_iso_send(iso_conn, buf, BT_ISO_TS_PRESENT);
}

Expand Down