Message ID | 20241025142842.46566-2-iulia.tanasescu@nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 36b26283cee31af9509ee372f9787f94830a85b7 |
Headers | show |
Series | transport: Fix select/unselect reply missing | 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=903164 ---Test result--- Test Summary: CheckPatch PASS 0.86 seconds GitLint PASS 0.62 seconds BuildEll PASS 24.79 seconds BluezMake PASS 1751.11 seconds MakeCheck PASS 12.97 seconds MakeDistcheck PASS 181.16 seconds CheckValgrind PASS 254.25 seconds CheckSmatch PASS 360.17 seconds bluezmakeextell PASS 123.96 seconds IncrementalBuild PASS 3214.92 seconds ScanBuild PASS 1042.41 seconds --- Regards, Linux Bluetooth
diff --git a/profiles/audio/transport.c b/profiles/audio/transport.c index 68192bae6..bc63772a6 100644 --- a/profiles/audio/transport.c +++ b/profiles/audio/transport.c @@ -1423,7 +1423,7 @@ static DBusMessage *select_transport(DBusConnection *conn, DBusMessage *msg, transport_update_playing(transport, TRUE); } - return NULL; + return dbus_message_new_method_return(msg); } static DBusMessage *unselect_transport(DBusConnection *conn, DBusMessage *msg, @@ -1436,7 +1436,7 @@ static DBusMessage *unselect_transport(DBusConnection *conn, DBusMessage *msg, transport_update_playing(transport, FALSE); } - return NULL; + return dbus_message_new_method_return(msg); } static void sink_state_changed(struct btd_service *service,