diff options
author | Jiri Kosina <jkosina@suse.com> | 2024-01-08 21:12:34 +0100 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.com> | 2024-01-08 21:12:34 +0100 |
commit | 333b217c151c0d2de5fc0bf5dafb71110c80cd90 (patch) | |
tree | fee565c042a918d96d477f91725ed395a311581d /drivers/hid | |
parent | 1cb09b552b1a3e05ac4c1960b8cda6be19f59d05 (diff) | |
parent | 8e2f79f41a5d1b1a4a53ec524eb7609ca89f3c65 (diff) |
Merge branch 'for-6.8/sensor-hub' into for-linus
- fix for custom sensor-hub sensors (hinge angle sensor and LISS sensors) not
working (Yauhen Kharuzhy)
Diffstat (limited to 'drivers/hid')
-rw-r--r-- | drivers/hid/hid-sensor-hub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hid/hid-sensor-hub.c b/drivers/hid/hid-sensor-hub.c index 2eba152e8b90..26e93a331a51 100644 --- a/drivers/hid/hid-sensor-hub.c +++ b/drivers/hid/hid-sensor-hub.c @@ -632,7 +632,7 @@ static int sensor_hub_probe(struct hid_device *hdev, } INIT_LIST_HEAD(&hdev->inputs); - ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); + ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT | HID_CONNECT_DRIVER); if (ret) { hid_err(hdev, "hw start failed\n"); return ret; |