|
42 | 42 | * - the driver supports debugfs for values not fitting into the hwmon class
|
43 | 43 | * - not every device class (HXi or RMi) supports all commands
|
44 | 44 | * - if configured wrong the PSU resets or shuts down, often before actually hitting the
|
45 |
| - * - reported critical temperature |
| 45 | + * reported critical temperature |
| 46 | + * - new models like HX1500i Series 2023 have changes in the reported vendor and product |
| 47 | + * strings, both are slightly longer now, report vendor and product in one string and are |
| 48 | + * the same now |
46 | 49 | */
|
47 | 50 |
|
48 | 51 | #define DRIVER_NAME "corsair-psu"
|
49 | 52 |
|
50 |
| -#define REPLY_SIZE 16 /* max length of a reply to a single command */ |
| 53 | +#define REPLY_SIZE 24 /* max length of a reply to a single command */ |
51 | 54 | #define CMD_BUFFER_SIZE 64
|
52 | 55 | #define CMD_TIMEOUT_MS 250
|
53 | 56 | #define SECONDS_PER_HOUR (60 * 60)
|
@@ -880,7 +883,7 @@ static const struct hid_device_id corsairpsu_idtable[] = {
|
880 | 883 | { HID_USB_DEVICE(0x1b1c, 0x1c0c) }, /* Corsair RM850i */
|
881 | 884 | { HID_USB_DEVICE(0x1b1c, 0x1c0d) }, /* Corsair RM1000i */
|
882 | 885 | { HID_USB_DEVICE(0x1b1c, 0x1c1e) }, /* Corsair HX1000i Series 2023 */
|
883 |
| - { HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Series 2022 */ |
| 886 | + { HID_USB_DEVICE(0x1b1c, 0x1c1f) }, /* Corsair HX1500i Series 2022 and 2023 */ |
884 | 887 | { },
|
885 | 888 | };
|
886 | 889 | MODULE_DEVICE_TABLE(hid, corsairpsu_idtable);
|
|
0 commit comments