Message ID | 20240102181946.57288-2-verdre@v0yd.nl (mailing list archive) |
---|---|
State | Accepted |
Commit | f48705f473cea37efeeaa6a197ae12730c112863 |
Headers | show |
Series | Power off HCI devices before rfkilling them | 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/SubjectPrefix | success | Gitlint PASS |
tedd_an/BuildKernel | success | BuildKernel PASS |
tedd_an/CheckAllWarning | success | CheckAllWarning PASS |
tedd_an/CheckSparse | success | CheckSparse PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/BuildKernel32 | success | BuildKernel32 PASS |
tedd_an/TestRunnerSetup | success | TestRunnerSetup PASS |
tedd_an/TestRunner_l2cap-tester | success | TestRunner PASS |
tedd_an/TestRunner_iso-tester | success | TestRunner PASS |
tedd_an/TestRunner_bnep-tester | success | TestRunner PASS |
tedd_an/TestRunner_mgmt-tester | success | TestRunner PASS |
tedd_an/TestRunner_rfcomm-tester | success | TestRunner PASS |
tedd_an/TestRunner_sco-tester | success | TestRunner PASS |
tedd_an/TestRunner_ioctl-tester | success | TestRunner PASS |
tedd_an/TestRunner_mesh-tester | success | TestRunner PASS |
tedd_an/TestRunner_smp-tester | success | TestRunner PASS |
tedd_an/TestRunner_userchan-tester | success | TestRunner PASS |
tedd_an/IncrementalBuild | success | Incremental 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=813896 ---Test result--- Test Summary: CheckPatch PASS 2.26 seconds GitLint PASS 0.81 seconds SubjectPrefix PASS 0.26 seconds BuildKernel PASS 27.77 seconds CheckAllWarning PASS 30.72 seconds CheckSparse PASS 36.61 seconds CheckSmatch PASS 99.26 seconds BuildKernel32 PASS 27.03 seconds TestRunnerSetup PASS 435.16 seconds TestRunner_l2cap-tester PASS 23.04 seconds TestRunner_iso-tester PASS 45.75 seconds TestRunner_bnep-tester PASS 7.02 seconds TestRunner_mgmt-tester PASS 163.90 seconds TestRunner_rfcomm-tester PASS 10.87 seconds TestRunner_sco-tester PASS 14.96 seconds TestRunner_ioctl-tester PASS 12.20 seconds TestRunner_mesh-tester PASS 8.73 seconds TestRunner_smp-tester PASS 9.76 seconds TestRunner_userchan-tester PASS 7.24 seconds IncrementalBuild PASS 60.77 seconds --- Regards, Linux Bluetooth
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index 111e8f8e5..cf5d6230c 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -426,7 +426,6 @@ enum { #define HCI_NCMD_TIMEOUT msecs_to_jiffies(4000) /* 4 seconds */ #define HCI_ACL_TX_TIMEOUT msecs_to_jiffies(45000) /* 45 seconds */ #define HCI_AUTO_OFF_TIMEOUT msecs_to_jiffies(2000) /* 2 seconds */ -#define HCI_POWER_OFF_TIMEOUT msecs_to_jiffies(5000) /* 5 seconds */ #define HCI_LE_CONN_TIMEOUT msecs_to_jiffies(20000) /* 20 seconds */ #define HCI_LE_AUTOCONN_TIMEOUT msecs_to_jiffies(4000) /* 4 seconds */
With commit cf75ad8b41d2aa06f98f365d42a3ae8b059daddd, the power off sequence got refactored so that this was no longer necessary, let's remove the leftover define from the header too. Signed-off-by: Jonas Dreßler <verdre@v0yd.nl> --- include/net/bluetooth/hci.h | 1 - 1 file changed, 1 deletion(-)