Message ID | 20231124124248.7621-1-akoskovich@pm.me (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/1] Bluetooth: btintel: Demote DSM support error to info | 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=804016 ---Test result--- Test Summary: CheckPatch PASS 0.42 seconds GitLint PASS 0.18 seconds SubjectPrefix PASS 0.06 seconds BuildKernel PASS 27.67 seconds CheckAllWarning PASS 30.17 seconds CheckSparse PASS 35.59 seconds CheckSmatch PASS 98.64 seconds BuildKernel32 PASS 26.65 seconds TestRunnerSetup PASS 417.78 seconds TestRunner_l2cap-tester PASS 23.32 seconds TestRunner_iso-tester PASS 41.33 seconds TestRunner_bnep-tester PASS 7.00 seconds TestRunner_mgmt-tester PASS 165.46 seconds TestRunner_rfcomm-tester PASS 11.12 seconds TestRunner_sco-tester PASS 14.61 seconds TestRunner_ioctl-tester PASS 12.39 seconds TestRunner_mesh-tester PASS 8.79 seconds TestRunner_smp-tester PASS 9.99 seconds TestRunner_userchan-tester PASS 7.41 seconds IncrementalBuild PASS 26.01 seconds --- Regards, Linux Bluetooth
diff --git a/drivers/bluetooth/btintel.c b/drivers/bluetooth/btintel.c index 2462796a512a..e025a80e10b5 100644 --- a/drivers/bluetooth/btintel.c +++ b/drivers/bluetooth/btintel.c @@ -2536,7 +2536,7 @@ static void btintel_set_dsm_reset_method(struct hci_dev *hdev, if (!acpi_check_dsm(handle, &btintel_guid_dsm, 0, BIT(DSM_SET_WDISABLE2_DELAY))) { - bt_dev_err(hdev, "No dsm support to set reset delay"); + bt_dev_info(hdev, "No dsm support to set reset delay"); return; } argv4.integer.type = ACPI_TYPE_INTEGER;
Newer Intel platforms support reset of Bluetooth device via ACPI DSM methods, but not all. If the platform doesn't support restarting Bluetooth via DSM an info message is more appropriate as nothing is actually wrong, since this is new behavior as of v6.6. Signed-off-by: Alexander Koskovich <akoskovich@pm.me> --- drivers/bluetooth/btintel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)