diff mbox series

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

Message ID 20230427231352.576337-1-luiz.dentz@gmail.com
State Superseded
Headers show
Series [BlueZ,v3,1/9] media: Fix not storing Preferred Delay properly | expand

Commit Message

Luiz Augusto von Dentz April 27, 2023, 11:13 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, 3:14 a.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=743695

---Test result---

Test Summary:
CheckPatch                    PASS      5.30 seconds
GitLint                       PASS      2.94 seconds
BuildEll                      PASS      35.05 seconds
BluezMake                     PASS      1231.46 seconds
MakeCheck                     PASS      12.85 seconds
MakeDistcheck                 PASS      200.13 seconds
CheckValgrind                 PASS      330.53 seconds
CheckSmatch                   PASS      463.36 seconds
bluezmakeextell               PASS      135.14 seconds
IncrementalBuild              PASS      9235.45 seconds
ScanBuild                     PASS      1336.67 seconds



---
Regards,
Linux Bluetooth
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);