Message ID | 20230403122430.1024235-3-neeraj.sanjaykale@nxp.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 3f8dae828fb29e771331a5197bd460252a99c7c6 |
Headers | show |
Series | [v1] Bluetooth: btnxpuart: Disable Power Save feature on startup | 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=736376 ---Test result--- Test Summary: CheckPatch PASS 0.69 seconds GitLint PASS 0.36 seconds SubjectPrefix PASS 0.12 seconds BuildKernel PASS 33.88 seconds CheckAllWarning PASS 35.88 seconds CheckSparse PASS 40.50 seconds CheckSmatch PASS 110.02 seconds BuildKernel32 PASS 31.60 seconds TestRunnerSetup PASS 451.07 seconds TestRunner_l2cap-tester PASS 16.24 seconds TestRunner_iso-tester PASS 16.51 seconds TestRunner_bnep-tester PASS 5.36 seconds TestRunner_mgmt-tester PASS 109.77 seconds TestRunner_rfcomm-tester PASS 8.55 seconds TestRunner_sco-tester PASS 7.96 seconds TestRunner_ioctl-tester PASS 9.17 seconds TestRunner_mesh-tester PASS 6.76 seconds TestRunner_smp-tester PASS 7.85 seconds TestRunner_userchan-tester PASS 5.63 seconds IncrementalBuild PASS 30.57 seconds --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluetooth-next.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Mon, 3 Apr 2023 17:54:29 +0530 you wrote: > This sets the default power save mode setting to disabled. > With this setting, this driver will behave like a normal h4 driver. > If user needs to use the power save feature, it can be enabled > using the following vendor command: > hcitool cmd 3f 23 02 00 00 (HCI_NXP_AUTO_SLEEP_MODE) > > Signed-off-by: Neeraj Sanjay Kale <neeraj.sanjaykale@nxp.com> > > [...] Here is the summary with links: - [v1] Bluetooth: btnxpuart: Disable Power Save feature on startup https://git.kernel.org/bluetooth/bluetooth-next/c/3f8dae828fb2 You are awesome, thank you!
diff --git a/drivers/bluetooth/btnxpuart.c b/drivers/bluetooth/btnxpuart.c index ad9e25e0c350..93f3afc0c0c8 100644 --- a/drivers/bluetooth/btnxpuart.c +++ b/drivers/bluetooth/btnxpuart.c @@ -262,7 +262,7 @@ static u8 crc8_table[CRC8_TABLE_SIZE]; /* Default configurations */ #define DEFAULT_H2C_WAKEUP_MODE WAKEUP_METHOD_BREAK -#define DEFAULT_PS_MODE PS_MODE_ENABLE +#define DEFAULT_PS_MODE PS_MODE_DISABLE #define FW_INIT_BAUDRATE HCI_NXP_PRI_BAUDRATE static struct sk_buff *nxp_drv_send_cmd(struct hci_dev *hdev, u16 opcode,
This sets the default power save mode setting to disabled. With this setting, this driver will behave like a normal h4 driver. If user needs to use the power save feature, it can be enabled using the following vendor command: hcitool cmd 3f 23 02 00 00 (HCI_NXP_AUTO_SLEEP_MODE) Signed-off-by: Neeraj Sanjay Kale <neeraj.sanjaykale@nxp.com> --- drivers/bluetooth/btnxpuart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)