Message ID | 20240125125156.1679513-1-kiran.k@intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 2e2e50011d0c6685a7e2f3dc1d777a19fb4b11e6 |
Headers | show |
Series | bap: Fix update of context | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/CheckPatch | success | CheckPatch PASS |
tedd_an/GitLint | success | Gitlint PASS |
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/IncrementalBuild | success | Incremental Build 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=819846 ---Test result--- Test Summary: CheckPatch PASS 0.42 seconds GitLint PASS 0.29 seconds BuildEll PASS 24.79 seconds BluezMake PASS 785.94 seconds MakeCheck PASS 11.37 seconds MakeDistcheck PASS 166.82 seconds CheckValgrind PASS 229.85 seconds CheckSmatch PASS 337.73 seconds bluezmakeextell PASS 110.26 seconds IncrementalBuild PASS 716.31 seconds ScanBuild PASS 990.50 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Thu, 25 Jan 2024 18:21:56 +0530 you wrote: > Fix context getting updated with support_context. > --- > src/shared/bap.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - bap: Fix update of context https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=2e2e50011d0c You are awesome, thank you!
diff --git a/src/shared/bap.c b/src/shared/bap.c index d56911e6b9ef..06cac5bb34fe 100644 --- a/src/shared/bap.c +++ b/src/shared/bap.c @@ -2628,7 +2628,7 @@ static void pacs_add_source_supported_context(struct bt_pacs *pacs, static void pacs_add_source_context(struct bt_pacs *pacs, uint16_t context) { - context |= pacs->supported_source_context_value; + context |= pacs->source_context_value; /* Check if context value needs updating */ if (context == pacs->source_context_value)