Message ID | 20241220143106.27443-2-iulia.tanasescu@nxp.com (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | bass: Handle Modify Source opcode | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=919917 ---Test result--- Test Summary: CheckPatch PENDING 0.21 seconds GitLint PENDING 0.17 seconds BuildEll PASS 20.81 seconds BluezMake PASS 1644.46 seconds MakeCheck PASS 13.38 seconds MakeDistcheck PASS 163.45 seconds CheckValgrind PASS 221.17 seconds CheckSmatch PASS 280.05 seconds bluezmakeextell PASS 100.02 seconds IncrementalBuild PENDING 0.29 seconds ScanBuild PASS 847.94 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
diff --git a/src/shared/bass.c b/src/shared/bass.c index d99a140a1..1ab1a0a44 100644 --- a/src/shared/bass.c +++ b/src/shared/bass.c @@ -1819,7 +1819,7 @@ int bt_bass_clear_bis_sync(struct bt_bcast_src *bcast_src, uint8_t bis) &bcast_src->subgroup_data[i]; uint32_t bitmask = 1 << (bis - 1); - if (sgrp->pending_bis_sync & bitmask) { + if (sgrp->bis_sync & bitmask) { sgrp->bis_sync &= ~bitmask; iov = bass_parse_bcast_src(bcast_src);