Message ID | 20250220085811.5033-2-iulia.tanasescu@nxp.com |
---|---|
State | New |
Headers | show |
Series | bap: Update bt_bap user data handling | expand |
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);