* [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key
2012-03-13 3:04 ` joeyli
@ 2012-03-29 9:53 ` Sergey Senozhatsky
2012-03-30 10:25 ` joeyli
0 siblings, 1 reply; 5+ messages in thread
From: Sergey Senozhatsky @ 2012-03-29 9:53 UTC (permalink / raw)
To: joeyli; +Cc: Joey Lee, Matthew Garrett, platform-driver-x86, linux-kernel
acer-wmi: add Aspire 5741G touchpad toggle key
add Aspire 5741G KEY_TOUCHPAD_TOGGLE to wmi keymap.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
---
drivers/platform/x86/acer-wmi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index c1a3fd8..94a6747 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -125,6 +125,7 @@ static const struct key_entry acer_wmi_keymap[] = {
{KE_KEY, 0x64, {KEY_SWITCHVIDEOMODE} }, /* Display Switch */
{KE_IGNORE, 0x81, {KEY_SLEEP} },
{KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */
+ {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
{KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
{KE_END, 0}
};
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key
2012-03-29 9:53 ` [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key Sergey Senozhatsky
@ 2012-03-30 10:25 ` joeyli
0 siblings, 0 replies; 5+ messages in thread
From: joeyli @ 2012-03-30 10:25 UTC (permalink / raw)
To: Sergey Senozhatsky
Cc: Joey Lee, Matthew Garrett, platform-driver-x86, linux-kernel
Hi Sergey,
於 四,2012-03-29 於 12:53 +0300,Sergey Senozhatsky 提到:
> acer-wmi: add Aspire 5741G touchpad toggle key
>
> add Aspire 5741G KEY_TOUCHPAD_TOGGLE to wmi keymap.
>
> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
>
> ---
>
> drivers/platform/x86/acer-wmi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> index c1a3fd8..94a6747 100644
> --- a/drivers/platform/x86/acer-wmi.c
> +++ b/drivers/platform/x86/acer-wmi.c
> @@ -125,6 +125,7 @@ static const struct key_entry acer_wmi_keymap[] = {
> {KE_KEY, 0x64, {KEY_SWITCHVIDEOMODE} }, /* Display Switch */
> {KE_IGNORE, 0x81, {KEY_SLEEP} },
> {KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */
> + {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
> {KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
> {KE_END, 0}
> };
>
Acked-by: Lee, Chun-Yi <jlee@suse.com>
This patch is OK to me!
Thanks for your patch!
Joey Lee
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key
@ 2012-11-26 18:35 Sergey Senozhatsky
2012-11-27 6:31 ` joeyli
0 siblings, 1 reply; 5+ messages in thread
From: Sergey Senozhatsky @ 2012-11-26 18:35 UTC (permalink / raw)
To: Joey Lee; +Cc: Matthew Garrett, platform-driver-x86, linux-kernel
Add Aspire 5741G KEY_TOUCHPAD_TOGGLE to wmi keymap, preventing
"acer_wmi: Unknown key number - 0x85" error.
Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
---
drivers/platform/x86/acer-wmi.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
index 934d861..9a6ee9a 100644
--- a/drivers/platform/x86/acer-wmi.c
+++ b/drivers/platform/x86/acer-wmi.c
@@ -127,6 +127,7 @@ static const struct key_entry acer_wmi_keymap[] = {
{KE_IGNORE, 0x81, {KEY_SLEEP} },
{KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */
{KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
+ {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
{KE_END, 0}
};
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key
2012-11-26 18:35 [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key Sergey Senozhatsky
@ 2012-11-27 6:31 ` joeyli
2012-11-27 7:36 ` Sergey Senozhatsky
0 siblings, 1 reply; 5+ messages in thread
From: joeyli @ 2012-11-27 6:31 UTC (permalink / raw)
To: Sergey Senozhatsky
Cc: Joey Lee, Matthew Garrett, platform-driver-x86, linux-kernel
於 一,2012-11-26 於 21:35 +0300,Sergey Senozhatsky 提到:
> Add Aspire 5741G KEY_TOUCHPAD_TOGGLE to wmi keymap, preventing
> "acer_wmi: Unknown key number - 0x85" error.
>
>
> Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
Thanks for you resend your patch.
Joey Lee
>
> ---
>
> drivers/platform/x86/acer-wmi.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> index 934d861..9a6ee9a 100644
> --- a/drivers/platform/x86/acer-wmi.c
> +++ b/drivers/platform/x86/acer-wmi.c
> @@ -127,6 +127,7 @@ static const struct key_entry acer_wmi_keymap[] = {
> {KE_IGNORE, 0x81, {KEY_SLEEP} },
> {KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */
> {KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
> + {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
> {KE_END, 0}
> };
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key
2012-11-27 6:31 ` joeyli
@ 2012-11-27 7:36 ` Sergey Senozhatsky
0 siblings, 0 replies; 5+ messages in thread
From: Sergey Senozhatsky @ 2012-11-27 7:36 UTC (permalink / raw)
To: joeyli; +Cc: Joey Lee, linux-kernel
On (11/27/12 14:31), joeyli wrote:
> 於 一,2012-11-26 於 21:35 +0300,Sergey Senozhatsky 提到:
> > Add Aspire 5741G KEY_TOUCHPAD_TOGGLE to wmi keymap, preventing
> > "acer_wmi: Unknown key number - 0x85" error.
> >
> >
> > Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
>
> Signed-off-by: Lee, Chun-Yi <jlee@suse.com>
>
> Thanks for you resend your patch.
>
sorry, it took so much time, somehow I forgot about it.
-ss
> Joey Lee
>
> >
> > ---
> >
> > drivers/platform/x86/acer-wmi.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
> > index 934d861..9a6ee9a 100644
> > --- a/drivers/platform/x86/acer-wmi.c
> > +++ b/drivers/platform/x86/acer-wmi.c
> > @@ -127,6 +127,7 @@ static const struct key_entry acer_wmi_keymap[] = {
> > {KE_IGNORE, 0x81, {KEY_SLEEP} },
> > {KE_KEY, 0x82, {KEY_TOUCHPAD_TOGGLE} }, /* Touch Pad On/Off */
> > {KE_IGNORE, 0x83, {KEY_TOUCHPAD_TOGGLE} },
> > + {KE_KEY, 0x85, {KEY_TOUCHPAD_TOGGLE} },
> > {KE_END, 0}
> > };
> >
> >
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-11-27 7:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-26 18:35 [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key Sergey Senozhatsky
2012-11-27 6:31 ` joeyli
2012-11-27 7:36 ` Sergey Senozhatsky
-- strict thread matches above, loose matches on Subject: below --
2012-03-06 12:33 [PATCH] acer-wmi: ignore missing Aspire 5741G keys Sergey Senozhatsky
2012-03-09 4:17 ` joeyli
2012-03-12 10:19 ` Sergey Senozhatsky
2012-03-13 3:04 ` joeyli
2012-03-29 9:53 ` [PATCH] acer-wmi: add Aspire 5741G touchpad toggle key Sergey Senozhatsky
2012-03-30 10:25 ` joeyli
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox