* [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled
@ 2015-09-09 17:25 Azael Avalos
2015-09-09 17:25 ` [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models Azael Avalos
2015-09-10 16:18 ` [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Darren Hart
0 siblings, 2 replies; 4+ messages in thread
From: Azael Avalos @ 2015-09-09 17:25 UTC (permalink / raw)
To: Darren Hart, platform-driver-x86, linux-kernel; +Cc: Azael Avalos
Commit e1a949c1b988 ("toshiba_acpi: Refactor *{get, set} functions return
value") made changes on the return type of the HCI/SCI functions, but a
typo on the USB Sleep and Music code is always reporting non existent
support for such feature.
This patch corrects the typo, changing an assignment to a comparison,
making the laptops with actual support for such feature to work again.
Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
---
Darren,
Hopefully this patch can go into one of the 4.3 RCs, as the changes are
there and to avoid shipping a broken feature support.
drivers/platform/x86/toshiba_acpi.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index 6740c51..c434b53 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -938,7 +938,7 @@ static int toshiba_usb_sleep_music_get(struct toshiba_acpi_dev *dev, u32 *state)
else if (result == TOS_NOT_SUPPORTED)
return -ENODEV;
- return result = TOS_SUCCESS ? 0 : -EIO;
+ return result == TOS_SUCCESS ? 0 : -EIO;
}
static int toshiba_usb_sleep_music_set(struct toshiba_acpi_dev *dev, u32 state)
--
2.5.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models
2015-09-09 17:25 [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Azael Avalos
@ 2015-09-09 17:25 ` Azael Avalos
2015-09-10 16:20 ` Darren Hart
2015-09-10 16:18 ` [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Darren Hart
1 sibling, 1 reply; 4+ messages in thread
From: Azael Avalos @ 2015-09-09 17:25 UTC (permalink / raw)
To: Darren Hart, platform-driver-x86, linux-kernel; +Cc: Azael Avalos, stable
Commit a2b3471b5b13 ("toshiba_acpi: Use the Hotkey Event Type function
for keymap choosing") changed the *setup_keyboard function to query for
the Hotkey Event Type to help choose the correct keymap, but turns out
that here are certain Toshiba models out there not implementing this
feature, and thus, failing to continue the input device registration and
leaving such laptops without hotkey support.
This patch changes such check, and instead of returning an error if
the Hotkey Event Type is not present, we simply inform userspace about it,
changing the message printed from err to notice, making the function
responsible for registering the input device to continue.
This issue was found on a Toshiba Portege Z30-B, but there might be
some other models out there affected by this regression as well.
Cc: <stable@vger.kernel.org> # 4.1+
Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
---
drivers/platform/x86/toshiba_acpi.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/drivers/platform/x86/toshiba_acpi.c b/drivers/platform/x86/toshiba_acpi.c
index c434b53..f2372f4 100644
--- a/drivers/platform/x86/toshiba_acpi.c
+++ b/drivers/platform/x86/toshiba_acpi.c
@@ -2398,11 +2398,9 @@ static int toshiba_acpi_setup_keyboard(struct toshiba_acpi_dev *dev)
if (error)
return error;
- error = toshiba_hotkey_event_type_get(dev, &events_type);
- if (error) {
- pr_err("Unable to query Hotkey Event Type\n");
- return error;
- }
+ if (toshiba_hotkey_event_type_get(dev, &events_type))
+ pr_notice("Unable to query Hotkey Event Type\n");
+
dev->hotkey_event_type = events_type;
dev->hotkey_dev = input_allocate_device();
--
2.5.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled
2015-09-09 17:25 [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Azael Avalos
2015-09-09 17:25 ` [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models Azael Avalos
@ 2015-09-10 16:18 ` Darren Hart
1 sibling, 0 replies; 4+ messages in thread
From: Darren Hart @ 2015-09-10 16:18 UTC (permalink / raw)
To: Azael Avalos; +Cc: platform-driver-x86, linux-kernel
On Wed, Sep 09, 2015 at 11:25:44AM -0600, Azael Avalos wrote:
> Commit e1a949c1b988 ("toshiba_acpi: Refactor *{get, set} functions return
> value") made changes on the return type of the HCI/SCI functions, but a
> typo on the USB Sleep and Music code is always reporting non existent
> support for such feature.
>
> This patch corrects the typo, changing an assignment to a comparison,
> making the laptops with actual support for such feature to work again.
>
> Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
> ---
> Darren,
>
> Hopefully this patch can go into one of the 4.3 RCs, as the changes are
> there and to avoid shipping a broken feature support.
Queued for 4.3, thanks Azael.
--
Darren Hart
Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models
2015-09-09 17:25 ` [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models Azael Avalos
@ 2015-09-10 16:20 ` Darren Hart
0 siblings, 0 replies; 4+ messages in thread
From: Darren Hart @ 2015-09-10 16:20 UTC (permalink / raw)
To: Azael Avalos; +Cc: platform-driver-x86, linux-kernel, stable
On Wed, Sep 09, 2015 at 11:25:45AM -0600, Azael Avalos wrote:
> Commit a2b3471b5b13 ("toshiba_acpi: Use the Hotkey Event Type function
> for keymap choosing") changed the *setup_keyboard function to query for
> the Hotkey Event Type to help choose the correct keymap, but turns out
> that here are certain Toshiba models out there not implementing this
> feature, and thus, failing to continue the input device registration and
> leaving such laptops without hotkey support.
>
> This patch changes such check, and instead of returning an error if
> the Hotkey Event Type is not present, we simply inform userspace about it,
> changing the message printed from err to notice, making the function
> responsible for registering the input device to continue.
>
> This issue was found on a Toshiba Portege Z30-B, but there might be
> some other models out there affected by this regression as well.
>
> Cc: <stable@vger.kernel.org> # 4.1+
> Signed-off-by: Azael Avalos <coproscefalo@gmail.com>
Queued for 4.3, thanks!
--
Darren Hart
Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-09-10 16:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-09 17:25 [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Azael Avalos
2015-09-09 17:25 ` [PATCH] toshiba_acpi: Fix hotkeys registration on some toshiba models Azael Avalos
2015-09-10 16:20 ` Darren Hart
2015-09-10 16:18 ` [PATCH] toshiba_acpi: Fix USB Sleep and Music always disabled Darren Hart
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox