diff options
author | 2024-01-08 21:12:34 +0100 | |
---|---|---|
committer | 2024-01-08 21:12:34 +0100 | |
commit | 333b217c151c0d2de5fc0bf5dafb71110c80cd90 (patch) | |
tree | fee565c042a918d96d477f91725ed395a311581d | |
parent | Merge branch 'for-6.8/selftests' into for-linus (diff) | |
parent | HID: sensor-hub: Enable hid core report processing for all devices (diff) | |
download | wireguard-linux-333b217c151c0d2de5fc0bf5dafb71110c80cd90.tar.xz wireguard-linux-333b217c151c0d2de5fc0bf5dafb71110c80cd90.zip |
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)
-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; |