Message ID | 20240624201324.3891633-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 5ebaeab4164f80539904b9a520d9b7a8307e06e2 |
Headers | show |
Series | [BlueZ,v1] hog-lib: Fix passing wrong parameters to bt_uhid_get_report_reply | 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=865048 ---Test result--- Test Summary: CheckPatch PASS 0.42 seconds GitLint PASS 0.29 seconds BuildEll PASS 26.02 seconds BluezMake PASS 1663.87 seconds MakeCheck PASS 13.46 seconds MakeDistcheck PASS 178.03 seconds CheckValgrind PASS 251.27 seconds CheckSmatch PASS 354.36 seconds bluezmakeextell PASS 120.09 seconds IncrementalBuild PASS 1417.64 seconds ScanBuild PASS 998.78 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 Mon, 24 Jun 2024 16:13:24 -0400 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > The parameters of bt_uhid_get_report_reply are number followed by > status, not status followed by number, so the order needs to be > swapped. > > Fixes: https://github.com/bluez/bluez/issues/880 > > [...] Here is the summary with links: - [BlueZ,v1] hog-lib: Fix passing wrong parameters to bt_uhid_get_report_reply https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=5ebaeab4164f You are awesome, thank you!
diff --git a/profiles/input/hog-lib.c b/profiles/input/hog-lib.c index 67a0e832dc98..1b4aca07486b 100644 --- a/profiles/input/hog-lib.c +++ b/profiles/input/hog-lib.c @@ -904,7 +904,7 @@ static void report_reply(struct bt_hog *hog, uint8_t status, uint8_t id, hog->getrep_att = 0; - err = bt_uhid_get_report_reply(hog->uhid, hog->getrep_id, status, id, + err = bt_uhid_get_report_reply(hog->uhid, hog->getrep_id, id, status, data, len); if (err < 0) error("bt_uhid_get_report_reply: %s", strerror(-err));
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> The parameters of bt_uhid_get_report_reply are number followed by status, not status followed by number, so the order needs to be swapped. Fixes: https://github.com/bluez/bluez/issues/880 --- profiles/input/hog-lib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)