From: "Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>
To: "Gašper Nemgar" <gasper.nemgar@gmail.com>
Cc: ikepanhc@gmail.com, Hans de Goede <hdegoede@redhat.com>,
ilpo.jarvinen@linux.intel.com,
LKML <linux-kernel@vger.kernel.org>,
platform-driver-x86@vger.kernel.org
Subject: Re: [PATCH] Added support for a some new buttons in ideapad-laptop driver Added entries to unsuported wmi codes in ideapad_keymap[] and one check in wmi_nofify in order to get wmi code 0x13d to trigger platform_profile_cycle
Date: Fri, 21 Mar 2025 16:17:06 +0200 (EET) [thread overview]
Message-ID: <ce934c71-2220-c8f9-ff3a-5633360a8935@linux.intel.com> (raw)
In-Reply-To: <20250321083003.84661-1-gasper.nemgar@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 2000 bytes --]
On Fri, 21 Mar 2025, Gašper Nemgar wrote:
Hi Gasper,
Thanks for the patch. I think the changelog text got messed up during send
as it should here, not in the subject.
Also please change "Added support" to "Add support", add the correct
prefix into the shortlog (the line in Subject), and add parenthesis after
functions in the description.
--
i.
> Signed-off-by: Gašper Nemgar <gasper.nemgar@gmail.com>"
> ---
> drivers/platform/x86/ideapad-laptop.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index 30bd366d7..a03377d87 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -1308,6 +1308,16 @@ static const struct key_entry ideapad_keymap[] = {
> /* Specific to some newer models */
> { KE_KEY, 0x3e | IDEAPAD_WMI_KEY, { KEY_MICMUTE } },
> { KE_KEY, 0x3f | IDEAPAD_WMI_KEY, { KEY_RFKILL } },
> + /* Star- (User Asignable Key) */
> + { KE_KEY, 0x44 | IDEAPAD_WMI_KEY, { KEY_PROG1 } },
> + /* Eye */
> + { KE_KEY, 0x45 | IDEAPAD_WMI_KEY, { KEY_BRIGHTNESS_CYCLE } },
> + /* Performance toggle also Fn+Q */
> + { KE_KEY, 0x3d | IDEAPAD_WMI_KEY, { KEY_PROG4 } },
> + /* shift + prtsc */
> + { KE_KEY, 0x2d | IDEAPAD_WMI_KEY, { KEY_CUT } },
> + { KE_KEY, 0x29 | IDEAPAD_WMI_KEY, { KEY_TOUCHPAD_TOGGLE } },
> + { KE_KEY, 0x2a | IDEAPAD_WMI_KEY, { KEY_ROOT_MENU } },
>
> { KE_END },
> };
> @@ -2093,6 +2103,12 @@ static void ideapad_wmi_notify(struct wmi_device *wdev, union acpi_object *data)
>
> dev_dbg(&wdev->dev, "WMI fn-key event: 0x%llx\n",
> data->integer.value);
> +
> + /* performance button triggered by ... */
> + if ((data->integer.value | IDEAPAD_WMI_KEY) == 0x13d ) {
> + platform_profile_cycle();
> + break;
> + }
>
> /* 0x02 FnLock, 0x03 Esc */
> if (data->integer.value == 0x02 || data->integer.value == 0x03)
>
next prev parent reply other threads:[~2025-03-21 14:17 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-21 8:30 [PATCH] Added support for a some new buttons in ideapad-laptop driver Added entries to unsuported wmi codes in ideapad_keymap[] and one check in wmi_nofify in order to get wmi code 0x13d to trigger platform_profile_cycle Gašper Nemgar
2025-03-21 14:17 ` Ilpo Järvinen [this message]
[not found] ` <CAKi4K-jVGw58nbxdWKizaNJRzPc3izE9ipZUOwUq=v-hAAjd8w@mail.gmail.com>
2025-03-24 12:23 ` Hans de Goede
2025-03-24 13:47 ` Gašper Nemgar
2025-03-24 12:20 ` Hans de Goede
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=ce934c71-2220-c8f9-ff3a-5633360a8935@linux.intel.com \
--to=ilpo.jarvinen@linux.intel.com \
--cc=gasper.nemgar@gmail.com \
--cc=hdegoede@redhat.com \
--cc=ikepanhc@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=platform-driver-x86@vger.kernel.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