Message ID | 20250319121218.166878-1-frederic.danis@collabora.com (mailing list archive) |
---|---|
State | Accepted |
Commit | f77e72c3ab11d8c06f487ff7892afef2aefbd0f6 |
Headers | show |
Series | [BlueZ] profiles/avrcp: Fix PDU for SetAbsoluteVolume with top level bit set | 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=945569 ---Test result--- Test Summary: CheckPatch PENDING 0.22 seconds GitLint PENDING 0.20 seconds BuildEll PASS 20.99 seconds BluezMake PASS 1518.84 seconds MakeCheck PASS 12.87 seconds MakeDistcheck PASS 163.50 seconds CheckValgrind PASS 221.40 seconds CheckSmatch PASS 293.42 seconds bluezmakeextell PASS 100.91 seconds IncrementalBuild PENDING 0.35 seconds ScanBuild PASS 904.44 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
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 19 Mar 2025 13:12:18 +0100 you wrote: > This is required for passing PTS test case AVRCP/TG/VLH/BI-02-C > (To verify the behavior of the TG receiving a SetAbsoluteVolume > command with the top level bit set). > --- > profiles/audio/avrcp.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Here is the summary with links: - [BlueZ] profiles/avrcp: Fix PDU for SetAbsoluteVolume with top level bit set https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=f77e72c3ab11 You are awesome, thank you!
diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index 65f1adbdd..8d1e03b93 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -1793,7 +1793,7 @@ static uint8_t avrcp_handle_set_absolute_volume(struct avrcp *session, goto err; } - volume = pdu->params[0] & 0x7F; + volume = pdu->params[0] = pdu->params[0] & 0x7F; media_transport_update_device_volume(session->dev, volume);