diff mbox series

[BlueZ,v4,1/9] media: Fix not storing Preferred Delay properly

Message ID 20230428184640.849066-1-luiz.dentz@gmail.com (mailing list archive)
State Accepted
Commit a600c9bda9fee26d640acb1bf042de3583c6c3df
Headers show
Series [BlueZ,v4,1/9] media: Fix not storing Preferred Delay properly | expand

Checks

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

Commit Message

Luiz Augusto von Dentz April 28, 2023, 6:46 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

Preferred Delay properties were being stored as qos->pd_* instead of
qos->ppd_*.
---
 profiles/audio/media.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

bluez.test.bot@gmail.com April 28, 2023, 9:43 p.m. UTC | #1
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=743913

---Test result---

Test Summary:
CheckPatch                    PASS      5.30 seconds
GitLint                       PASS      3.16 seconds
BuildEll                      PASS      27.05 seconds
BluezMake                     PASS      860.46 seconds
MakeCheck                     PASS      11.82 seconds
MakeDistcheck                 PASS      151.47 seconds
CheckValgrind                 PASS      248.07 seconds
CheckSmatch                   PASS      333.33 seconds
bluezmakeextell               PASS      100.40 seconds
IncrementalBuild              PASS      6367.43 seconds
ScanBuild                     PASS      1012.27 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org April 28, 2023, 10:40 p.m. UTC | #2
Hello:

This series was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Fri, 28 Apr 2023 11:46:32 -0700 you wrote:
> From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
> 
> Preferred Delay properties were being stored as qos->pd_* instead of
> qos->ppd_*.
> ---
>  profiles/audio/media.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - [BlueZ,v4,1/9] media: Fix not storing Preferred Delay properly
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=a600c9bda9fe
  - [BlueZ,v4,2/9] shared/bap: Fix crash detaching streams
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=1abd45bb45bf
  - [BlueZ,v4,3/9] share/bap: Fix not removing timeout on bap_free
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=614d66302715
  - [BlueZ,v4,4/9] shared/tester: Add support for NULL PDUs
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=74206678a97b
  - [BlueZ,v4,5/9] shared/bap: Fix typo
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=3fa45f728cd7
  - [BlueZ,v4,6/9] shared/lc3: Update configuration to use iovec
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=0b230fd2ba38
  - [BlueZ,v4,7/9] test-bap: Introduce SCC tests for LC3
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=f7a518c85590
  - [BlueZ,v4,8/9] shared/util: Fix runtime error
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=3b5c0e5ed076
  - [BlueZ,v4,9/9] test-bap: Add SCC tests for Vendor-Specific codec
    (no matching commit)

You are awesome, thank you!
diff mbox series

Patch

diff --git a/profiles/audio/media.c b/profiles/audio/media.c
index 52c4bd80a94c..6ce668e31303 100644
--- a/profiles/audio/media.c
+++ b/profiles/audio/media.c
@@ -1483,11 +1483,11 @@  static int parse_properties(DBusMessageIter *props, const char **uuid,
 		} else if (strcasecmp(key, "PreferredMinimumDelay") == 0) {
 			if (var != DBUS_TYPE_UINT16)
 				return -EINVAL;
-			dbus_message_iter_get_basic(&value, &qos->pd_min);
+			dbus_message_iter_get_basic(&value, &qos->ppd_min);
 		} else if (strcasecmp(key, "PreferredMaximumDelay") == 0) {
 			if (var != DBUS_TYPE_UINT16)
 				return -EINVAL;
-			dbus_message_iter_get_basic(&value, &qos->pd_max);
+			dbus_message_iter_get_basic(&value, &qos->ppd_max);
 		}
 
 		dbus_message_iter_next(props);