diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-11 18:40:33 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-12-11 18:40:33 +0200 |
| commit | cc734a8c9195d752a65205bc727b2d33a8a8f60d (patch) | |
| tree | e292d51c1d3172f351609bd0a3e218c8fd1fac21 /src/hid-tmff2.c | |
| parent | c4b70d4ec36404c9454199bec208eaf3116ef453 (diff) | |
| parent | 8b1c826c0d70c6a086c8ff262b4a8074f1f9acf5 (diff) | |
| download | hid-tmff2-cc734a8c9195d752a65205bc727b2d33a8a8f60d.tar.gz hid-tmff2-cc734a8c9195d752a65205bc727b2d33a8a8f60d.zip | |
Merge branch 'tspc'
Diffstat (limited to 'src/hid-tmff2.c')
| -rw-r--r-- | src/hid-tmff2.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/hid-tmff2.c b/src/hid-tmff2.c index ee3188a..162a30a 100644 --- a/src/hid-tmff2.c +++ b/src/hid-tmff2.c @@ -707,6 +707,10 @@ static int tmff2_probe(struct hid_device *hdev, const struct hid_device_id *id) if ((ret = tsxw_populate_api(tmff2))) goto wheel_err; break; + case TMTS_PC_RACER_ID: + if ((ret = tspc_populate_api(tmff2))) + goto wheel_err; + break; default: ret = -ENODEV; goto wheel_err; @@ -806,6 +810,8 @@ static const struct hid_device_id tmff2_devices[] = { {HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMT248_PC_ID)}, /* tx */ {HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TX_ACTIVE)}, + /* TS-PC RACER */ + {HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TMTS_PC_RACER_ID)}, /* tsxw */ {HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, TSXW_ACTIVE)}, |
