Message ID | 20250220085811.5033-2-iulia.tanasescu@nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 790a0c5d75ec98697edd5173236da49544cefc3e |
Headers | show |
Series | bap: Update bt_bap user data handling | 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=935909 ---Test result--- Test Summary: CheckPatch PENDING 0.22 seconds GitLint PENDING 0.18 seconds BuildEll PASS 20.51 seconds BluezMake PASS 1530.47 seconds MakeCheck PASS 13.76 seconds MakeDistcheck PASS 159.59 seconds CheckValgrind PASS 222.09 seconds CheckSmatch PASS 286.40 seconds bluezmakeextell PASS 98.96 seconds IncrementalBuild PENDING 0.27 seconds ScanBuild PASS 877.71 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
diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c index c503f250c..6d2afa2c0 100644 --- a/profiles/audio/bap.c +++ b/profiles/audio/bap.c @@ -192,10 +192,8 @@ static void bap_data_free(struct bap_data *data) if (data->io_id) g_source_remove(data->io_id); - if (data->service && btd_service_get_user_data(data->service) == data) { + if (data->service && btd_service_get_user_data(data->service) == data) btd_service_set_user_data(data->service, NULL); - bt_bap_set_user_data(data->bap, NULL); - } queue_destroy(data->snks, ep_unregister); queue_destroy(data->srcs, ep_unregister);