diff options
author | Benjamin Tissoires <bentiss@kernel.org> | 2023-08-31 10:45:16 +0200 |
---|---|---|
committer | Benjamin Tissoires <bentiss@kernel.org> | 2023-08-31 10:45:16 +0200 |
commit | 141a1289f405387cb4cde20b9f5a7d4dda62a1e3 (patch) | |
tree | 9984c7d3f9ea831fddfe472c24be4f57e3c1d9fe | |
parent | Merge branch 'for-6.6/roccat' into for-linus (diff) | |
parent | HID: sensor-hub: Allow multi-function sensor devices (diff) | |
download | linux-141a1289f405387cb4cde20b9f5a7d4dda62a1e3.tar.xz linux-141a1289f405387cb4cde20b9f5a7d4dda62a1e3.zip |
Merge branch 'for-6.6/sensor-hub' into for-linus
Allow multi-function sensor devices in sensor-hub by Daniel Thompson
-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 83237b86c8ff..2eba152e8b90 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, 0); + ret = hid_hw_start(hdev, HID_CONNECT_DEFAULT); if (ret) { hid_err(hdev, "hw start failed\n"); return ret; |