Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1260306 > unrolled thread
| Started by | Azael Avalos <coproscefalo@gmail.com> |
|---|---|
| First post | 2015-11-02 03:40 +0100 |
| Last post | 2015-11-04 17:10 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] toshiba_acpi: Initialize hotkey_event_type variable Azael Avalos <coproscefalo@gmail.com> - 2015-11-02 03:40 +0100
Re: [PATCH] toshiba_acpi: Initialize hotkey_event_type variable Darren Hart <dvhart@infradead.org> - 2015-11-04 01:50 +0100
Re: [PATCH] toshiba_acpi: Initialize hotkey_event_type variable Azael Avalos <coproscefalo@gmail.com> - 2015-11-04 17:10 +0100
| From | Azael Avalos <coproscefalo@gmail.com> |
|---|---|
| Date | 2015-11-02 03:40 +0100 |
| Subject | [PATCH] toshiba_acpi: Initialize hotkey_event_type variable |
| Message-ID | <qqdcm-81B-3@gated-at.bofh.it> |
Commit 23f8f4326a15 ("toshiba_acpi: Fix hotkeys registration on some
toshiba models") fixed an issue on some laptops regarding hotkeys
registration, however, if failed to address the initialization of the
hotkey_event_type variable, and thus, it can lead to potential
unwanted effects as the variable is being checked.
This patch initializes such variable to avoid such unwanted effects.
Cc: <stable@vger.kernel.org> # 4.1+
Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
---
Darren,
Sorry for sending this patch this late, I had a really busy week :-(
drivers/platform/x86/toshiba_acpi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/platform/x86/toshiba_acpi.c
b/drivers/platform/x86/toshiba_acpi.c
index beb709f..c013029 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -2665,6 +2665,7 @@ static int toshiba_acpi_add(struct acpi_device *acpi_dev)
ret = toshiba_function_keys_get(dev, &dev->special_functions);
dev->kbd_function_keys_supported = !ret;
+ dev->hotkey_event_type = 0;
if (toshiba_acpi_setup_keyboard(dev))
pr_info("Unable to activate hotkeys\n");
--
2.6.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2015-11-04 01:50 +0100 |
| Message-ID | <qqUqZ-1DM-1@gated-at.bofh.it> |
| In reply to | #1260306 |
On Sun, Nov 01, 2015 at 07:30:30PM -0700, Azael Avalos wrote:
> Commit 23f8f4326a15 ("toshiba_acpi: Fix hotkeys registration on some
> toshiba models") fixed an issue on some laptops regarding hotkeys
> registration, however, if failed to address the initialization of the
> hotkey_event_type variable, and thus, it can lead to potential
> unwanted effects as the variable is being checked.
>
> This patch initializes such variable to avoid such unwanted effects.
>
> Cc: <stable@vger.kernel.org> # 4.1+
> Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
> ---
> Darren,
>
> Sorry for sending this patch this late, I had a really busy week :-(
It's a trivial patch, so I'm not concerned with the timing. Thanks for getting
it out!
Unfortunately, it doesn't apply and appears to be whitespace mangled. Checkpatch
complains and tabs appear to have been replaced with spaces. Please check your
send mail mechanism and resend - possibly using git-send-email or something like
mutt -H PATCHNAME. Try sending to yourself first and verifying you can apply it.
Thanks,
>
> drivers/platform/x86/toshiba_acpi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/platform/x86/toshiba_acpi.c
> b/drivers/platform/x86/toshiba_acpi.c
> index beb709f..c013029 100644
> --- a/drivers/platform/x86/toshiba_acpi.c
> +++ b/drivers/platform/x86/toshiba_acpi.c
> @@ -2665,6 +2665,7 @@ static int toshiba_acpi_add(struct acpi_device *acpi_dev)
> ret = toshiba_function_keys_get(dev, &dev->special_functions);
> dev->kbd_function_keys_supported = !ret;
>
> + dev->hotkey_event_type = 0;
> if (toshiba_acpi_setup_keyboard(dev))
> pr_info("Unable to activate hotkeys\n");
>
> --
> 2.6.2
>
--
Darren Hart
Intel Open Source Technology Center
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Azael Avalos <coproscefalo@gmail.com> |
|---|---|
| Date | 2015-11-04 17:10 +0100 |
| Message-ID | <qr8Nk-2Ge-27@gated-at.bofh.it> |
| In reply to | #1261990 |
Hi Darren,
2015-11-03 17:44 GMT-07:00 Darren Hart <dvhart@infradead.org>:
> On Sun, Nov 01, 2015 at 07:30:30PM -0700, Azael Avalos wrote:
>> Commit 23f8f4326a15 ("toshiba_acpi: Fix hotkeys registration on some
>> toshiba models") fixed an issue on some laptops regarding hotkeys
>> registration, however, if failed to address the initialization of the
>> hotkey_event_type variable, and thus, it can lead to potential
>> unwanted effects as the variable is being checked.
>>
>> This patch initializes such variable to avoid such unwanted effects.
>>
>> Cc: <stable@vger.kernel.org> # 4.1+
>> Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
>> ---
>> Darren,
>>
>> Sorry for sending this patch this late, I had a really busy week :-(
>
> It's a trivial patch, so I'm not concerned with the timing. Thanks for getting
> it out!
>
> Unfortunately, it doesn't apply and appears to be whitespace mangled. Checkpatch
> complains and tabs appear to have been replaced with spaces. Please check your
> send mail mechanism and resend - possibly using git-send-email or something like
> mutt -H PATCHNAME. Try sending to yourself first and verifying you can apply it.
Ughh, sorry about this, I sent this email directly instead of git-send-email,
so the copy-paste might have changed something.
The version of git I'm currently using parses the stable address as
stable@vger.kernel.org#4.1+ and gsmtp complains about a malformed address...
I'll try to resend this patch ASAP.
>
> Thanks,
>
Cheers
Azael
--
-- El mundo apesta y vosotros apestais tambien --
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web