diff mbox series

[BlueZ,v1,1/1] HID device not connecting issue fixed.

Message ID 20241224142424.10572-2-mahesh.talewad@nxp.com
State New
Headers show
Series HID device connection issue fixed. | expand

Commit Message

Mahesh Talewad Dec. 24, 2024, 2:24 p.m. UTC
While connecting BT-HID device showing br-profile unavailable
and connection did not happen.
Steps followed:
	1. Pair Ref device
	2. Connect Ref device
With this patch HID device is able to connect and HID traffic
can be observed in btmon.
---
 profiles/input/device.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Dec. 24, 2024, 3:32 p.m. UTC | #1
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=920753

---Test result---

Test Summary:
CheckPatch                    PENDING   0.18 seconds
GitLint                       PENDING   0.19 seconds
BuildEll                      PASS      22.57 seconds
BluezMake                     PASS      1563.66 seconds
MakeCheck                     PASS      13.64 seconds
MakeDistcheck                 PASS      161.53 seconds
CheckValgrind                 PASS      215.49 seconds
CheckSmatch                   PASS      274.53 seconds
bluezmakeextell               PASS      99.83 seconds
IncrementalBuild              PENDING   0.24 seconds
ScanBuild                     PASS      863.68 seconds

Details
##############################
Test: CheckPatch - PENDING
Desc: Run checkpatch.pl script
Output:

##############################
Test: GitLint - PENDING
Desc: Run gitlint
Output:

##############################
Test: IncrementalBuild - PENDING
Desc: Incremental build with the patches in the series
Output:



---
Regards,
Linux Bluetooth
diff mbox series

Patch

diff --git a/profiles/input/device.c b/profiles/input/device.c
index 8cf8e5ea7..a6047998a 100644
--- a/profiles/input/device.c
+++ b/profiles/input/device.c
@@ -89,7 +89,7 @@  struct input_device {
 };
 
 static int idle_timeout = 0;
-static uhid_state_t uhid_state = UHID_ENABLED;
+static uhid_state_t uhid_state = UHID_DISABLED;
 static bool classic_bonded_only = true;
 
 void input_set_idle_timeout(int timeout)