Skip to content

Commit f836dab

Browse files
MariuszSkamracarlescufi
authored andcommitted
Bluetooth: audio: Handle Receiver Stop Ready on non-connected stream
This fixes state transition to QoS Configured state triggered by client-initiated Receiver Stop Ready operation on ASE that has no ISO attached. Fixes: ASCS/SR/ACP/BV-12-C Signed-off-by: Mariusz Skamra <[email protected]>
1 parent bb7854d commit f836dab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/bluetooth/audio/ascs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ static void ase_stop(struct bt_ascs_ase *ase)
20682068
* procedure defined in Volume 3, Part C, Section 9.3.15.
20692069
*/
20702070
err = bt_audio_stream_disconnect(stream);
2071-
if (err != 0) {
2071+
if (err != -ENOTCONN && err != 0) {
20722072
BT_ERR("Could not disconnect the CIS: %d", err);
20732073
return;
20742074
}

0 commit comments

Comments
 (0)