diff options
author | Aleksandr Mezin <mezin.alexander@gmail.com> | 2024-05-24 02:39:58 +0200 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2024-05-30 00:55:35 +0200 |
commit | 246e6426a87ee4dbb8cd08c9b43323263b5ab76f (patch) | |
tree | aed2800a63a51fdd78754f9cd0c6a42b1276790c /drivers/hwmon/nzxt-smart2.c | |
parent | hwmon: corsair-psu: add USB id of HX1200i Series 2023 psu (diff) | |
download | linux-246e6426a87ee4dbb8cd08c9b43323263b5ab76f.tar.xz linux-246e6426a87ee4dbb8cd08c9b43323263b5ab76f.zip |
hwmon: (nzxt-smart2) Add support for another version of NZXT RGB & Fan Controller
Add support for NZXT RGB & Fan Controller with USB ID 1e71:2020.
Fan speed control reported to be working with existing userspace (hidraw)
software, so it should be compatible. Fan channel count is the same.
No known differences from already supported devices, at least regarding
fan speed control and initialization.
Signed-off-by: Aleksandr Mezin <mezin.alexander@gmail.com>
Link: https://lore.kernel.org/r/20240524004040.121044-1-mezin.alexander@gmail.com
[groeck: Adjusted subject and description]
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to '')
-rw-r--r-- | drivers/hwmon/nzxt-smart2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/nzxt-smart2.c b/drivers/hwmon/nzxt-smart2.c index 7aa586eb74be..df6fa72a6b59 100644 --- a/drivers/hwmon/nzxt-smart2.c +++ b/drivers/hwmon/nzxt-smart2.c @@ -799,6 +799,7 @@ static const struct hid_device_id nzxt_smart2_hid_id_table[] = { { HID_USB_DEVICE(0x1e71, 0x2010) }, /* NZXT RGB & Fan Controller */ { HID_USB_DEVICE(0x1e71, 0x2011) }, /* NZXT RGB & Fan Controller (6 RGB) */ { HID_USB_DEVICE(0x1e71, 0x2019) }, /* NZXT RGB & Fan Controller (6 RGB) */ + { HID_USB_DEVICE(0x1e71, 0x2020) }, /* NZXT RGB & Fan Controller (6 RGB) */ {}, }; |