Message ID | 20230329232537.577958-1-luiz.dentz@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | ca07d198f9c7d289e95091c30ed15bff2106a7db |
Headers | show |
Series | [v2,1/2] bap: Mark devices to auto-connect | 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=735183 ---Test result--- Test Summary: CheckPatch PASS 0.76 seconds GitLint PASS 0.54 seconds BuildEll PASS 26.81 seconds BluezMake PASS 762.58 seconds MakeCheck PASS 10.82 seconds MakeDistcheck PASS 148.65 seconds CheckValgrind PASS 241.53 seconds CheckSmatch PASS 322.74 seconds bluezmakeextell PASS 97.30 seconds IncrementalBuild PASS 1226.54 seconds ScanBuild PASS 970.92 seconds --- Regards, Linux Bluetooth
Hello: This series was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Wed, 29 Mar 2023 16:25:36 -0700 you wrote: > From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> > > This makes devices with BAP support to auto-connect once they start > advertising. > --- > profiles/audio/bap.c | 1 + > 1 file changed, 1 insertion(+) Here is the summary with links: - [v2,1/2] bap: Mark devices to auto-connect https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=ca07d198f9c7 - [v2,2/2] device: Fix not setting initiator flag when auto-connecting https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=2b022fa5297a You are awesome, thank you!
diff --git a/profiles/audio/bap.c b/profiles/audio/bap.c index cfe6854663fa..464f365a93bc 100644 --- a/profiles/audio/bap.c +++ b/profiles/audio/bap.c @@ -1352,6 +1352,7 @@ static struct btd_profile bap_profile = { .device_remove = bap_remove, .accept = bap_accept, .disconnect = bap_disconnect, + .auto_connect = true, }; static unsigned int bap_id = 0;
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com> This makes devices with BAP support to auto-connect once they start advertising. --- profiles/audio/bap.c | 1 + 1 file changed, 1 insertion(+)