diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-01 14:58:33 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2021-12-01 14:58:33 +0200 |
| commit | a491f6dc947f428f4f1977bd06d336492989feeb (patch) | |
| tree | 0414a0e6541440266793f5079abf7d8bb774ec3a | |
| parent | e6859e323c1d914c7811d572d0377601d8e16f97 (diff) | |
| download | hid-tmff2-a491f6dc947f428f4f1977bd06d336492989feeb.tar.gz hid-tmff2-a491f6dc947f428f4f1977bd06d336492989feeb.zip | |
Removed constant attribute
| -rw-r--r-- | hid-tmt300rs.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hid-tmt300rs.h b/hid-tmt300rs.h index f50e789..f86770f 100644 --- a/hid-tmt300rs.h +++ b/hid-tmt300rs.h @@ -317,8 +317,8 @@ static u8 t300rs_rdesc_ps4_fixed[] = { 0x05, 0x01, /* Usage page (Vendor 1) */ /* constant zero? */ 0x09, 0x00, /* Usage (33) */ - 0x95, 0x21, /* Report count (54) */ - 0x81, 0x03, /* Input (Variable, Absolute, Constant) */ + 0x95, 0x21, /* Report count (33) */ + 0x81, 0x02, /* Input (Variable, Absolute) */ /* wheel */ 0x09, 0x30, /* Usage (X) */ 0x15, 0x00, /* Logical minimum (0) */ @@ -341,7 +341,7 @@ static u8 t300rs_rdesc_ps4_fixed[] = { 0x09, 0x00, /* Usage (U) */ 0x75, 0x08, /* Report size (8) */ 0x95, 0x0d, /* Report count (13) */ - 0x81, 0x03, /* Input (Variable, Absolute, Constant) */ + 0x81, 0x02, /* Input (Variable, Absolute) */ /* continue unmodified */ 0x06, 0x00, 0xff, /* Usage page (Vendor defined 1) */ 0x85, 0x60, /* Report ID (5) (change to 0x60?) */ |
