2009-12-07 09:26:57

by Keng-Yü Lin

[permalink] [raw]
Subject: [2.6.31.stable] Input: atkbd - add force relese key quirk for Samsung R59P/R60P/R61P

OriginalAuthor:
Moiseev Vladimir <[email protected]>
Alexander Huhlaev <[email protected]>

BugLink: http://bugs.launchpad.net/bugs/253874

Signed-off-by: Keng-Yu Lin <[email protected]>
---
drivers/input/keyboard/atkbd.c | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
index 6c6a09b..abc314f 100644
--- a/drivers/input/keyboard/atkbd.c
+++ b/drivers/input/keyboard/atkbd.c
@@ -1608,6 +1608,15 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = {
.driver_data = atkbd_samsung_forced_release_keys,
},
{
+ .ident = "Samsung R59P/R60P/R61P",
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
+ DMI_MATCH(DMI_PRODUCT_NAME, "R59P/R60P/R61P"),
+ },
+ .callback = atkbd_setup_forced_release,
+ .driver_data = atkbd_samsung_forced_release_keys,
+ },
+ {
.ident = "Fujitsu Amilo PA 1510",
.matches = {
DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
--
1.6.3.3


2009-12-16 19:25:23

by Greg KH

[permalink] [raw]
Subject: Re: [stable] [2.6.31.stable] Input: atkbd - add force relese key quirk for Samsung R59P/R60P/R61P

I don't see the git commit id for the patch below, which is needed if it
is to be accepted into the -stable kernel tree.

Do you have it?

thanks,

greg k-h

On Mon, Dec 07, 2009 at 05:26:54PM +0800, Keng-Yu Lin wrote:
> OriginalAuthor:
> Moiseev Vladimir <[email protected]>
> Alexander Huhlaev <[email protected]>
>
> BugLink: http://bugs.launchpad.net/bugs/253874
>
> Signed-off-by: Keng-Yu Lin <[email protected]>
> ---
> drivers/input/keyboard/atkbd.c | 9 +++++++++
> 1 files changed, 9 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
> index 6c6a09b..abc314f 100644
> --- a/drivers/input/keyboard/atkbd.c
> +++ b/drivers/input/keyboard/atkbd.c
> @@ -1608,6 +1608,15 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = {
> .driver_data = atkbd_samsung_forced_release_keys,
> },
> {
> + .ident = "Samsung R59P/R60P/R61P",
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
> + DMI_MATCH(DMI_PRODUCT_NAME, "R59P/R60P/R61P"),
> + },
> + .callback = atkbd_setup_forced_release,
> + .driver_data = atkbd_samsung_forced_release_keys,
> + },
> + {
> .ident = "Fujitsu Amilo PA 1510",
> .matches = {
> DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
> --
> 1.6.3.3
>
> _______________________________________________
> stable mailing list
> [email protected]
> http://linux.kernel.org/mailman/listinfo/stable

2009-12-21 04:59:45

by Keng-Yü Lin

[permalink] [raw]
Subject: Re: [stable] [2.6.31.stable] Input: atkbd - add force relese key quirk for Samsung R59P/R60P/R61P

Dear Greg:
This patch is not upstream. Since 2.6.32, there is an interface in
/sys for handling the force_release events from userspace, so such
quirk patches are no longer accepted upstream now. But this patch is
valid for version 2.6.31 downwards.

Regards,

-Keng-Yu

2009/12/17 Greg KH <[email protected]>:
> I don't see the git commit id for the patch below, which is needed if it
> is to be accepted into the -stable kernel tree.
>
> Do you have it?
>
> thanks,
>
> greg k-h
>
> On Mon, Dec 07, 2009 at 05:26:54PM +0800, Keng-Yu Lin wrote:
>> OriginalAuthor:
>>     Moiseev Vladimir <[email protected]>
>>     Alexander Huhlaev <[email protected]>
>>
>> BugLink: http://bugs.launchpad.net/bugs/253874
>>
>> Signed-off-by: Keng-Yu Lin <[email protected]>
>> ---
>>  drivers/input/keyboard/atkbd.c |    9 +++++++++
>>  1 files changed, 9 insertions(+), 0 deletions(-)
>>
>> diff --git a/drivers/input/keyboard/atkbd.c b/drivers/input/keyboard/atkbd.c
>> index 6c6a09b..abc314f 100644
>> --- a/drivers/input/keyboard/atkbd.c
>> +++ b/drivers/input/keyboard/atkbd.c
>> @@ -1608,6 +1608,15 @@ static struct dmi_system_id atkbd_dmi_quirk_table[] __initdata = {
>>               .driver_data = atkbd_samsung_forced_release_keys,
>>       },
>>       {
>> +             .ident = "Samsung R59P/R60P/R61P",
>> +             .matches = {
>> +                     DMI_MATCH(DMI_SYS_VENDOR, "SAMSUNG ELECTRONICS CO., LTD."),
>> +                     DMI_MATCH(DMI_PRODUCT_NAME, "R59P/R60P/R61P"),
>> +             },
>> +             .callback = atkbd_setup_forced_release,
>> +             .driver_data = atkbd_samsung_forced_release_keys,
>> +     },
>> +     {
>>               .ident = "Fujitsu Amilo PA 1510",
>>               .matches = {
>>                       DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU SIEMENS"),
>> --
>> 1.6.3.3
>>
>> _______________________________________________
>> stable mailing list
>> [email protected]
>> http://linux.kernel.org/mailman/listinfo/stable
>

2010-01-05 19:34:00

by Greg KH

[permalink] [raw]
Subject: Re: [stable] [2.6.31.stable] Input: atkbd - add force relese key quirk for Samsung R59P/R60P/R61P


A: No.
Q: Should I include quotations after my reply?

http://daringfireball.net/2007/07/on_top


On Mon, Dec 21, 2009 at 12:59:43PM +0800, Keng-Y? Lin wrote:
> Dear Greg:
> This patch is not upstream. Since 2.6.32, there is an interface in
> /sys for handling the force_release events from userspace, so such
> quirk patches are no longer accepted upstream now. But this patch is
> valid for version 2.6.31 downwards.

Ok, thanks for the information. Please tell me this in the future when
submitting patches for -stable otherwise I have no idea and will just
drop them.

greg k-h