Message ID | 20230807054108.234233-2-karl.bieber@proton.me (mailing list archive) |
---|---|
State | Accepted |
Commit | b9c57e815e6e63965c6b0fa5907f7a761d169091 |
Headers | show |
Series | main: Fix missing comma | 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=773494 ---Test result--- Test Summary: CheckPatch PASS 0.48 seconds GitLint PASS 0.34 seconds BuildEll PASS 27.53 seconds BluezMake PASS 868.93 seconds MakeCheck PASS 12.56 seconds MakeDistcheck PASS 158.28 seconds CheckValgrind PASS 258.62 seconds CheckSmatch PASS 344.39 seconds bluezmakeextell PASS 104.23 seconds IncrementalBuild PASS 714.51 seconds ScanBuild PASS 1074.26 seconds --- Regards, Linux Bluetooth
diff --git a/src/main.c b/src/main.c index 13501440b..2134fcf75 100644 --- a/src/main.c +++ b/src/main.c @@ -78,7 +78,7 @@ static const char *supported_options[] = { "NameResolving", "DebugKeys", "ControllerMode", - "MaxControllers" + "MaxControllers", "MultiProfile", "FastConnectable", "SecureConnections",