All of lore.kernel.org
 help / color / mirror / Atom feed
From: sashiko-bot@kernel.org
To: "Denis Benato" <denis.benato@linux.dev>
Cc: linux-input@vger.kernel.org, dmitry.torokhov@gmail.com
Subject: Re: [PATCH v6 13/13] HID: asus: add support for btn remapping
Date: Tue, 08 Sep 2026 18:07:20 +0000	[thread overview]
Message-ID: <20260908180720.CC6161F00A3A@smtp.kernel.org> (raw)
In-Reply-To: <20260908174433.74260-14-denis.benato@linux.dev>

Thank you for your contribution! Sashiko AI review found 1 potential issue(s) to consider:
- [Medium] Button remapping attributes are never exposed for devices lacking turbo support because `ally_create_button_attributes` is incorrectly gated by `if (cfg->turbo_support)` in the caller.
--

commit f62bd64b66b8edafa21a4dcfaec466f614d7bae9
Author: Denis Benato <denis.benato@linux.dev>
Subject: HID: asus: add support for btn remapping

Adds support for button remapping to the ROG Ally, exposing remap_index,
remap, and macro sysfs attributes for physical buttons on the device.

> diff --git a/drivers/hid/hid-asus.c b/drivers/hid/hid-asus.c
> index 5cdbcc2bd1bc7..f8655c1ab7359 100644
> --- a/drivers/hid/hid-asus.c
> +++ b/drivers/hid/hid-asus.c
> @@ -2932,15 +3842,12 @@ static void ally_btn_turbo_init_attrs(struct ally_btn_sysfs_entry *entry)
>   * Return: 0 on success, negative errno on failure
>   */
>  static int ally_create_button_attributes(struct hid_device *hdev,
> -					 struct ally_handheld *ally,
> -					 struct ally_config *cfg)
> +					  struct ally_handheld *ally,
> +					  struct ally_config *cfg)
>  {
>  	struct ally_btn_sysfs_entry *entries;
>  	int i, ret;
>  
> -	if (!cfg->turbo_support)
> -		return 0;
> -

[ ... ]

> +		/* Set up attributes array based on what's supported */
> +		if (cfg->turbo_support) {
> +			entries[i].attrs[4] =
> +				&entries[i].remap_attr->dev_attr.attr;
> +			entries[i].attrs[5] =
> +				&entries[i].macro_attr->dev_attr.attr;
> +			entries[i].attrs[6] =
> +				&entries[i].attr_remap_index.attr;
> +			entries[i].attrs[7] = NULL;
> +		} else {
> +			entries[i].attrs[0] =
> +				&entries[i].remap_attr->dev_attr.attr;
> +			entries[i].attrs[1] =
> +				&entries[i].macro_attr->dev_attr.attr;
> +			entries[i].attrs[2] =
> +				&entries[i].attr_remap_index.attr;
> +			entries[i].attrs[3] = NULL;
> +		}

[Severity: Medium]
Since ally_create_button_attributes() is now designed to create remap
attributes even when the device lacks turbo support, should the caller
ally_config_create() also be updated to match?

Currently, ally_config_create() still completely gates calling this function
on cfg->turbo_support:

	if (cfg->turbo_support) {
		ret = ally_create_button_attributes(hdev, ally, cfg);
		if (ret < 0) {
			...
		}
	}

Does this result in a regression where the new remap attributes are
completely inaccessible for devices without turbo support?

-- 
Sashiko AI review · https://sashiko.dev/#/patchset/20260908174433.74260-1-denis.benato@linux.dev?part=13

      reply	other threads:[~2026-09-08 18:07 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-09-08 17:44 [PATCH v6 00/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-08 17:44 ` [PATCH v6 01/13] HID: asus: do not send keyboard init reports to touchpads Denis Benato
2026-09-08 17:44 ` [PATCH v6 02/13] HID: asus: reinitialize the device after exiting a sleep state Denis Benato
2026-09-08 18:00   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 03/13] HID: asus: add support for ROG Ally handhelds Denis Benato
2026-09-08 17:57   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 04/13] HID: asus: add gamepad configuration Denis Benato
2026-09-08 18:01   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 05/13] HID: asus: add vibration strength configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 06/13] HID: asus: add joysticks inner and outer range configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 07/13] HID: asus: add triggers " Denis Benato
2026-09-08 17:44 ` [PATCH v6 08/13] HID: asus: add joysticks anti-deadzone configuration Denis Benato
2026-09-08 17:44 ` [PATCH v6 09/13] HID: asus: add support for response curve Denis Benato
2026-09-08 18:13   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 10/13] HID: asus: add support to force feedback Denis Benato
2026-09-08 18:01   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 11/13] HID: asus: add support for gamepad mode Denis Benato
2026-09-08 17:44 ` [PATCH v6 12/13] HID: asus: add support for turbo buttons Denis Benato
2026-09-08 18:08   ` sashiko-bot
2026-09-08 17:44 ` [PATCH v6 13/13] HID: asus: add support for btn remapping Denis Benato
2026-09-08 18:07   ` sashiko-bot [this message]

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=20260908180720.CC6161F00A3A@smtp.kernel.org \
    --to=sashiko-bot@kernel.org \
    --cc=denis.benato@linux.dev \
    --cc=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=sashiko-reviews@lists.linux.dev \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.