Linux Documentation
 help / color / mirror / Atom feed
From: Aleksa Savic <savicaleksa83@gmail.com>
To: Arie Miller <renari@arimil.com>, Guenter Roeck <linux@roeck-us.net>
Cc: Will Smith <github@notthatwillsmith.com>,
	Jonathan Corbet <corbet@lwn.net>,
	Shuah Khan <skhan@linuxfoundation.org>,
	linux-hwmon@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 3/3] hwmon: (asus_rog_ryujin) Add ROG Ryujin III White Edition
Date: Fri, 14 Aug 2026 19:35:33 +0200	[thread overview]
Message-ID: <e640aa47-a879-46db-b10c-8ccce0ccd032@gmail.com> (raw)
In-Reply-To: <20260812103532.395049-4-renari@arimil.com>

On 8/12/26 12:35 PM, Arie Miller wrote:
> From: Will Smith <github@notthatwillsmith.com>
> 
> 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 <github@notthatwillsmith.com>
> Assisted-by: Codex:gpt-5.6-sol sparse
> Signed-off-by: Arie Miller <renari@arimil.com>
> ---
>   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 <savicaleksa83@gmail.com>

Thanks,
Aleksa

  reply	other threads:[~2026-08-14 17:35 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-12 10:35 [PATCH v3 0/3] hwmon: Add ASUS ROG Ryujin III support Arie Miller
2026-08-12 10:35 ` [PATCH v3 1/3] hwmon: (asus_rog_ryujin) Add per-device configuration Arie Miller
2026-08-13  4:57   ` Guenter Roeck
2026-08-13 10:07     ` Arimil
2026-08-13 11:14       ` Guenter Roeck
2026-08-14 17:30   ` Aleksa Savic
2026-08-14 18:20   ` Guenter Roeck
2026-08-12 10:35 ` [PATCH v3 2/3] hwmon: (asus_rog_ryujin) Add ROG Ryujin III support Arie Miller
2026-08-14 17:34   ` Aleksa Savic
2026-08-14 18:21   ` Guenter Roeck
2026-08-12 10:35 ` [PATCH v3 3/3] hwmon: (asus_rog_ryujin) Add ROG Ryujin III White Edition Arie Miller
2026-08-14 17:35   ` Aleksa Savic [this message]
2026-08-14 18:21   ` Guenter Roeck

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=e640aa47-a879-46db-b10c-8ccce0ccd032@gmail.com \
    --to=savicaleksa83@gmail.com \
    --cc=corbet@lwn.net \
    --cc=github@notthatwillsmith.com \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=renari@arimil.com \
    --cc=skhan@linuxfoundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox