Re: [PATCH v3 3/3] hwmon: (asus_rog_ryujin) Add ROG Ryujin III White Edition
Aleksa Savic <[email protected]>
| Newsgroups | org.kernel.vger.linux-hwmon,org.kernel.vger.linux-doc,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On 8/12/26 12:35 PM, Arie Miller wrote: > From: Will Smith <[email protected]> > > The ROG Ryujin III White Edition uses the same report layout as the > other supported Ryujin III variants. Add its USB device ID and list it > in the driver documentation. > > The device was tested with the driver on the author's hardware. > > Link: https://github.com/aleksamagicka/asus_rog_ryujin-hwmon/pull/10 > Signed-off-by: Will Smith <[email protected]> > Assisted-by: Codex:gpt-5.6-sol sparse > Signed-off-by: Arie Miller <[email protected]> > --- > Documentation/hwmon/asus_rog_ryujin.rst | 1 + > drivers/hwmon/asus_rog_ryujin.c | 3 +++ > 2 files changed, 4 insertions(+) > > diff --git a/Documentation/hwmon/asus_rog_ryujin.rst b/Documentation/hwmon/asus_rog_ryujin.rst > index cfdfe3712f19..b0d7ce8dd921 100644 > --- a/Documentation/hwmon/asus_rog_ryujin.rst > +++ b/Documentation/hwmon/asus_rog_ryujin.rst > @@ -8,6 +8,7 @@ Supported devices: > * ASUS ROG RYUJIN II 360 > * ASUS ROG RYUJIN III EXTREME > * ASUS ROG RYUJIN III EVA EDITION > +* ASUS ROG RYUJIN III WHITE EDITION > > Author: Aleksa Savic > > diff --git a/drivers/hwmon/asus_rog_ryujin.c b/drivers/hwmon/asus_rog_ryujin.c > index 79e5b6d6dae0..702edb831394 100644 > --- a/drivers/hwmon/asus_rog_ryujin.c > +++ b/drivers/hwmon/asus_rog_ryujin.c > @@ -19,6 +19,7 @@ > #define USB_PRODUCT_ID_RYUJIN_AIO 0x1988 /* ASUS ROG RYUJIN II 360 */ > #define USB_PRODUCT_ID_RYUJIN_III_EXTREME 0x1bcb > #define USB_PRODUCT_ID_RYUJIN_III_EVA 0x1ade > +#define USB_PRODUCT_ID_RYUJIN_III_WHITE 0x1ada > > struct rog_ryujin_device_info { > u8 temp_offset; > @@ -590,6 +591,8 @@ static const struct hid_device_id rog_ryujin_table[] = { > .driver_data = (kernel_ulong_t)&rog_ryujin_iii_info }, > { HID_USB_DEVICE(USB_VENDOR_ID_ASUS_ROG, USB_PRODUCT_ID_RYUJIN_III_EVA), > .driver_data = (kernel_ulong_t)&rog_ryujin_iii_info }, > + { HID_USB_DEVICE(USB_VENDOR_ID_ASUS_ROG, USB_PRODUCT_ID_RYUJIN_III_WHITE), > + .driver_data = (kernel_ulong_t)&rog_ryujin_iii_info }, > { } > }; > Reviewed-by: Aleksa Savic <[email protected]> Thanks, Aleksa