Message ID | 20240107180252.73436-2-verdre@v0yd.nl |
---|---|
State | Accepted |
Commit | f48705f473cea37efeeaa6a197ae12730c112863 |
Headers | show |
Series | Disconnect devices before rfkilling adapter | 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=814930 ---Test result--- Test Summary: CheckPatch PASS 1.97 seconds GitLint PASS 0.76 seconds SubjectPrefix PASS 0.26 seconds BuildKernel PASS 28.64 seconds CheckAllWarning PASS 31.16 seconds CheckSparse PASS 37.44 seconds CheckSmatch PASS 99.20 seconds BuildKernel32 PASS 27.28 seconds TestRunnerSetup PASS 436.83 seconds TestRunner_l2cap-tester PASS 22.96 seconds TestRunner_iso-tester PASS 45.40 seconds TestRunner_bnep-tester PASS 6.80 seconds TestRunner_mgmt-tester PASS 168.15 seconds TestRunner_rfcomm-tester PASS 10.99 seconds TestRunner_sco-tester PASS 14.78 seconds TestRunner_ioctl-tester PASS 12.60 seconds TestRunner_mesh-tester PASS 8.83 seconds TestRunner_smp-tester PASS 9.72 seconds TestRunner_userchan-tester PASS 7.23 seconds IncrementalBuild PASS 61.99 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 cf75ad8b41d2 ("Bluetooth: hci_sync: Convert MGMT_SET_POWERED"), the power off sequence got refactored so that this timeout 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(-)