All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] support thinkpad HKEY interface version 0x200
@ 2014-03-11 12:24 Shuduo Sang
  2014-04-03 15:44 ` [ibm-acpi-devel] " Henrique de Moraes Holschuh
  0 siblings, 1 reply; 10+ messages in thread
From: Shuduo Sang @ 2014-03-11 12:24 UTC (permalink / raw)
  To: ibm-acpi, matthew.garrett, ibm-acpi-devel, paltform-driver-x86,
	linux-kernel
  Cc: bruce.ma

Hi,

Please kindly review following patch. It support new BIOS which shiped
with Thinkpad X1 Carbon 2nd generation. Without it, hotkey mask be
routed to wrong branch and some hot key will not work.

Thanks,
Shuduo

>From 3c67b2731a61539363a62284a43b98fa3e2ba784 Mon Sep 17 00:00:00 2001
From: Shuduo Sang <shuduo.sang@canonical.com>
Date: Tue, 11 Mar 2014 20:13:15 +0800
Subject: [PATCH] support HKEY interface version 0x200

Thinkpad X1 Carbon 2nd generation ships with new BIOS will return HKEY
interface version 0x200. It need thinkpad-acpi support otherwise it
will be routed to wrong branch and hotkey mask is wrong.

Signed-off-by: Bruce Ma <bruce.ma@canonical.com>
Signed-off-by: Shuduo Sang <shuduo.sang@canonical.com>
---
 drivers/platform/x86/thinkpad_acpi.c | 39
+++++++++++++++++++++++++++++-------
 1 file changed, 32 insertions(+), 7 deletions(-)

diff --git a/drivers/platform/x86/thinkpad_acpi.c
b/drivers/platform/x86/thinkpad_acpi.c
index defb6af..939fc81 100644
--- a/drivers/platform/x86/thinkpad_acpi.c
+++ b/drivers/platform/x86/thinkpad_acpi.c
@@ -3244,11 +3244,8 @@ static int __init hotkey_init(struct
ibm_init_struct *iibm)
 	   A30, R30, R31, T20-22, X20-21, X22-24.  Detected by checking
 	   for HKEY interface version 0x100 */
 	if (acpi_evalf(hkey_handle, &hkeyv, "MHKV", "qd")) {
-		if ((hkeyv >> 8) != 1) {
-			pr_err("unknown version of the HKEY interface: 0x%x\n",
-			       hkeyv);
-			pr_err("please report this to %s\n", TPACPI_MAIL);
-		} else {
+		switch (hkeyv >> 8) {
+		case 1:
 			/*
 			 * MHKV 0x100 in A31, R40, R40e,
 			 * T4x, X31, and later
@@ -3261,13 +3258,41 @@ static int __init hotkey_init(struct
ibm_init_struct *iibm)
 			if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
 					"MHKA", "qd")) {
 				pr_err("missing MHKA handler, "
-				       "please report this to %s\n",
-				       TPACPI_MAIL);
+					"please report this to %s\n",
+					TPACPI_MAIL);
 				/* Fallback: pre-init for FN+F3,F4,F12 */
 				hotkey_all_mask = 0x080cU;
 			} else {
 				tp_features.hotkey_mask = 1;
 			}
+			break;
+
+		case 2:
+			/*
+			 * MHKV 0x200 in X1
+			 */
+			vdbg_printk(TPACPI_DBG_INIT | TPACPI_DBG_HKEY,
+				"firmware HKEY interface version: 0x%x\n",
+				hkeyv);
+
+			/* Paranoia check AND init hotkey_all_mask */
+			if (!acpi_evalf(hkey_handle, &hotkey_all_mask,
+					"MHKA", "dd", 1)) {
+				pr_err("missing MHKA handler, "
+					"please report this to %s\n",
+					TPACPI_MAIL);
+				/* Fallback: pre-init for FN+F3,F4,F12 */
+				hotkey_all_mask = 0x080cU;
+			} else {
+				tp_features.hotkey_mask = 1;
+			}
+			break;
+
+		default:
+			pr_err("unknown version of the HKEY interface: 0x%x\n",
+			       hkeyv);
+			pr_err("please report this to %s\n", TPACPI_MAIL);
+			break;
 		}
 	}

-- 
1.9.0


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [ibm-acpi-devel] [PATCH] support thinkpad HKEY interface version 0x200
  2014-03-11 12:24 [PATCH] support thinkpad HKEY interface version 0x200 Shuduo Sang
@ 2014-04-03 15:44 ` Henrique de Moraes Holschuh
       [not found]   ` <20140403154427.GB32027-ZGHd14iZgfaRjzvQDGKj+xxZW9W5cXbT@public.gmane.org>
  2014-04-11 13:10   ` Shuduo Sang
  0 siblings, 2 replies; 10+ messages in thread
From: Henrique de Moraes Holschuh @ 2014-04-03 15:44 UTC (permalink / raw)
  To: Shuduo Sang
  Cc: ibm-acpi, matthew.garrett, ibm-acpi-devel, paltform-driver-x86,
	linux-kernel, bruce.ma

On Tue, 11 Mar 2014, Shuduo Sang wrote:
> Please kindly review following patch. It support new BIOS which shiped
> with Thinkpad X1 Carbon 2nd generation. Without it, hotkey mask be
> routed to wrong branch and some hot key will not work.

Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>

Can you guys get documentation on the new mode from Lenovo?

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] support thinkpad HKEY interface version 0x200
       [not found]   ` <20140403154427.GB32027-ZGHd14iZgfaRjzvQDGKj+xxZW9W5cXbT@public.gmane.org>
@ 2014-04-03 16:21     ` Shuduo Sang
  2014-04-03 17:03       ` [ibm-acpi-devel] " Henrique de Moraes Holschuh
  0 siblings, 1 reply; 10+ messages in thread
From: Shuduo Sang @ 2014-04-03 16:21 UTC (permalink / raw)
  To: Henrique de Moraes Holschuh
  Cc: matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA,
	ibm-acpi-N3TV7GIv+o9fyO9Q7EP/yw,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	platform-driver-x86-u79uwXL29TY76Z2rM5mHXA,
	ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Bruce Ma


[-- Attachment #1.1: Type: text/plain, Size: 853 bytes --]

On Thu, Apr 3, 2014 at 11:44 PM, Henrique de Moraes Holschuh <hmh-N3TV7GIv+o9fyO9Q7EP/yw@public.gmane.org
> wrote:

> On Tue, 11 Mar 2014, Shuduo Sang wrote:
> > Please kindly review following patch. It support new BIOS which shiped
> > with Thinkpad X1 Carbon 2nd generation. Without it, hotkey mask be
> > routed to wrong branch and some hot key will not work.
>
> Acked-by: Henrique de Moraes Holschuh <hmh-N3TV7GIv+o9fyO9Q7EP/yw@public.gmane.org>
>
> Can you guys get documentation on the new mode from Lenovo?
>

Yes, actually it's a joint-effort to officially enable X1 carbon 2nd
generation by Canonical and Lenovo.


>
> --
>   "One disk to rule them all, One disk to find them. One disk to bring
>   them all and in the darkness grind them. In the Land of Redmond
>   where the shadows lie." -- The Silicon Valley Tarot
>   Henrique Holschuh
>

[-- Attachment #1.2: Type: text/html, Size: 1491 bytes --]

[-- Attachment #2: Type: text/plain, Size: 79 bytes --]

------------------------------------------------------------------------------

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
ibm-acpi-devel mailing list
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/ibm-acpi-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ibm-acpi-devel] [PATCH] support thinkpad HKEY interface version 0x200
  2014-04-03 16:21     ` Shuduo Sang
@ 2014-04-03 17:03       ` Henrique de Moraes Holschuh
  0 siblings, 0 replies; 10+ messages in thread
From: Henrique de Moraes Holschuh @ 2014-04-03 17:03 UTC (permalink / raw)
  To: Shuduo Sang
  Cc: matthew.garrett, ibm-acpi, linux-kernel, platform-driver-x86,
	ibm-acpi-devel, Bruce Ma

On Fri, 04 Apr 2014, Shuduo Sang wrote:
> On Thu, Apr 3, 2014 at 11:44 PM, Henrique de Moraes Holschuh <hmh@hmh.eng.br
> > wrote:
> 
> > On Tue, 11 Mar 2014, Shuduo Sang wrote:
> > > Please kindly review following patch. It support new BIOS which shiped
> > > with Thinkpad X1 Carbon 2nd generation. Without it, hotkey mask be
> > > routed to wrong branch and some hot key will not work.
> >
> > Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
> >
> > Can you guys get documentation on the new mode from Lenovo?
> >
> 
> Yes, actually it's a joint-effort to officially enable X1 carbon 2nd
> generation by Canonical and Lenovo.

Ok. Feel free to contact me over private email if required.

-- 
  "One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie." -- The Silicon Valley Tarot
  Henrique Holschuh

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ibm-acpi-devel] [PATCH] support thinkpad HKEY interface version 0x200
  2014-04-03 15:44 ` [ibm-acpi-devel] " Henrique de Moraes Holschuh
       [not found]   ` <20140403154427.GB32027-ZGHd14iZgfaRjzvQDGKj+xxZW9W5cXbT@public.gmane.org>
@ 2014-04-11 13:10   ` Shuduo Sang
  2014-04-11 13:43     ` Matthew Garrett
  1 sibling, 1 reply; 10+ messages in thread
From: Shuduo Sang @ 2014-04-11 13:10 UTC (permalink / raw)
  To: Henrique de Moraes Holschuh
  Cc: matthew.garrett, ibm-acpi, linux-kernel, ibm-acpi-devel,
	Bruce Ma, paltform-driver-x86

Hi Matthew,

This patch is not in your recent for_linus branch. Why?

Thanks,
Shuduo

On Thu, Apr 3, 2014 at 11:44 PM, Henrique de Moraes Holschuh
<hmh@hmh.eng.br> wrote:
> On Tue, 11 Mar 2014, Shuduo Sang wrote:
>> Please kindly review following patch. It support new BIOS which shiped
>> with Thinkpad X1 Carbon 2nd generation. Without it, hotkey mask be
>> routed to wrong branch and some hot key will not work.
>
> Acked-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
>
> Can you guys get documentation on the new mode from Lenovo?
>
> --
>   "One disk to rule them all, One disk to find them. One disk to bring
>   them all and in the darkness grind them. In the Land of Redmond
>   where the shadows lie." -- The Silicon Valley Tarot
>   Henrique Holschuh
>
> ------------------------------------------------------------------------------
> _______________________________________________
> ibm-acpi-devel mailing list
> ibm-acpi-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/ibm-acpi-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ibm-acpi-devel] [PATCH] support thinkpad HKEY interface version 0x200
  2014-04-11 13:10   ` Shuduo Sang
@ 2014-04-11 13:43     ` Matthew Garrett
  2014-04-11 13:55       ` Shuduo Sang
  0 siblings, 1 reply; 10+ messages in thread
From: Matthew Garrett @ 2014-04-11 13:43 UTC (permalink / raw)
  To: shuduo.sang
  Cc: paltform-driver-x86, linux-kernel, ibm-acpi-devel, ibm-acpi,
	bruce.ma, hmh

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 404 bytes --]

On Fri, 2014-04-11 at 21:10 +0800, Shuduo Sang wrote:
> Hi Matthew,
> 
> This patch is not in your recent for_linus branch. Why?

I'm sorry, I'd somehow missed it. I'll get it in the next pull.

-- 
Matthew Garrett <matthew.garrett@nebula.com>
ÿôèº{.nÇ+‰·Ÿ®‰­†+%ŠËÿ±éݶ\x17¥Šwÿº{.nÇ+‰·¥Š{±þG«éÿŠ{ayº\x1dʇڙë,j\a­¢f£¢·hšïêÿ‘êçz_è®\x03(­éšŽŠÝ¢j"ú\x1a¶^[m§ÿÿ¾\a«þG«éÿ¢¸?™¨è­Ú&£ø§~á¶iO•æ¬z·švØ^\x14\x04\x1a¶^[m§ÿÿÃ\fÿ¶ìÿ¢¸?–I¥

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] support thinkpad HKEY interface version 0x200
  2014-04-11 13:43     ` Matthew Garrett
@ 2014-04-11 13:55       ` Shuduo Sang
       [not found]         ` <CA+BAWBTb6Z1g-kNsyeAKAGjoUR1vXu3ZC33R+BO3+WH=64USoQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
       [not found]         ` <CA+BAWBRa8H_9ANHjMC0sa6GLvuMMY2jcgXxO8Ovp94tD9Pv0vg@mail.gmail.com>
  0 siblings, 2 replies; 10+ messages in thread
From: Shuduo Sang @ 2014-04-11 13:55 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: ibm-acpi-N3TV7GIv+o9fyO9Q7EP/yw,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	platform-driver-x86-u79uwXL29TY76Z2rM5mHXA,
	ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	bruce.ma-Z7WLFzj8eWMS+FvcfC7Uqw, hmh-N3TV7GIv+o9fyO9Q7EP/yw


[-- Attachment #1.1: Type: text/plain, Size: 418 bytes --]

On Fri, Apr 11, 2014 at 9:43 PM, Matthew Garrett <matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org
> wrote:

> On Fri, 2014-04-11 at 21:10 +0800, Shuduo Sang wrote:
> > Hi Matthew,
> >
> > This patch is not in your recent for_linus branch. Why?
>
> I'm sorry, I'd somehow missed it. I'll get it in the next pull.
>
>
Thanks!


>  --
> Matthew Garrett <matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org>
>

[-- Attachment #1.2: Type: text/html, Size: 1158 bytes --]

[-- Attachment #2: Type: text/plain, Size: 298 bytes --]

------------------------------------------------------------------------------
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment 
Start a new project now. Try Jenkins in the cloud.
http://p.sf.net/sfu/13600_Cloudbees

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
ibm-acpi-devel mailing list
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/ibm-acpi-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] support thinkpad HKEY interface version 0x200
       [not found]         ` <CA+BAWBTb6Z1g-kNsyeAKAGjoUR1vXu3ZC33R+BO3+WH=64USoQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-05-06 12:32           ` Shuduo Sang
       [not found]             ` <CA+BAWBQdGn54LO50Z0iB=X2D0r40Xp8+ryu1=GP7Kzv6PTU9bQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: Shuduo Sang @ 2014-05-06 12:32 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: ibm-acpi-N3TV7GIv+o9fyO9Q7EP/yw,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	platform-driver-x86-u79uwXL29TY76Z2rM5mHXA,
	ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	bruce.ma-Z7WLFzj8eWMS+FvcfC7Uqw, hmh-N3TV7GIv+o9fyO9Q7EP/yw


[-- Attachment #1.1: Type: text/plain, Size: 793 bytes --]

Hi Matthew,

I see Linus tree version continue to increase but seems you did not ask
platform driver tree pull
and my third patch for thinkpad_acpi did not be upstreamed. May I know what
cycle you used to
ask Linus pull?

Thanks,
Shuduo


On Fri, Apr 11, 2014 at 9:55 PM, Shuduo Sang <shuduo.sang-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org>wrote:

>
>
>
> On Fri, Apr 11, 2014 at 9:43 PM, Matthew Garrett <
> matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org> wrote:
>
>> On Fri, 2014-04-11 at 21:10 +0800, Shuduo Sang wrote:
>> > Hi Matthew,
>> >
>> > This patch is not in your recent for_linus branch. Why?
>>
>> I'm sorry, I'd somehow missed it. I'll get it in the next pull.
>>
>>
> Thanks!
>
>
>>  --
>> Matthew Garrett <matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org>
>>
>
>

[-- Attachment #1.2: Type: text/html, Size: 2471 bytes --]

[-- Attachment #2: Type: text/plain, Size: 346 bytes --]

------------------------------------------------------------------------------
Is your legacy SCM system holding you back? Join Perforce May 7 to find out:
&#149; 3 signs your SCM is hindering your productivity
&#149; Requirements for releasing software faster
&#149; Expert tips and advice for migrating your SCM now
http://p.sf.net/sfu/perforce

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
ibm-acpi-devel mailing list
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/ibm-acpi-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH] support thinkpad HKEY interface version 0x200
       [not found]             ` <CA+BAWBQdGn54LO50Z0iB=X2D0r40Xp8+ryu1=GP7Kzv6PTU9bQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2014-05-26 11:10               ` Shuduo Sang
  0 siblings, 0 replies; 10+ messages in thread
From: Shuduo Sang @ 2014-05-26 11:10 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: ibm-acpi-N3TV7GIv+o9fyO9Q7EP/yw,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	platform-driver-x86-u79uwXL29TY76Z2rM5mHXA,
	ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	bruce.ma-Z7WLFzj8eWMS+FvcfC7Uqw, hmh-N3TV7GIv+o9fyO9Q7EP/yw


[-- Attachment #1.1: Type: text/plain, Size: 1137 bytes --]

Hi Matthew,

Sorry for asking this again.
Just realize previous email was blocked by mailling list rule.

May I know when the platform driver tree will be pulled next time?

Thanks,
Shuduo

On 2014年05月06日 20:32, Shuduo Sang wrote:
> Hi Matthew,
 >
 > I see Linus tree version continue to increase but seems you did not 
ask platform driver tree pull
 > and my third patch for thinkpad_acpi did not be upstreamed. May I 
know what cycle you used to
 > ask Linus pull?
 >
 > Thanks,
 > Shuduo
 >
 >
 > On Fri, Apr 11, 2014 at 9:55 PM, Shuduo Sang 
<shuduo.sang-Z7WLFzj8eWMS+FvcfC7Uqw@public.gmane.org> wrote:
 >
 >
 >
 >
 >     On Fri, Apr 11, 2014 at 9:43 PM, Matthew Garrett 
<matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org> wrote:
 >
 >         On Fri, 2014-04-11 at 21:10 +0800, Shuduo Sang wrote:
 >         > Hi Matthew,
 >         >
 >         > This patch is not in your recent for_linus branch. Why?
 >
 >         I'm sorry, I'd somehow missed it. I'll get it in the next pull.
 >
 >
 >     Thanks!
 >
 >
 >         --
 >         Matthew Garrett <matthew.garrett-05XSO3Yj/JvQT0dZR+AlfA@public.gmane.org>
 >
 >
 >



[-- Attachment #1.2: Type: text/html, Size: 2285 bytes --]

[-- Attachment #2: Type: text/plain, Size: 417 bytes --]

------------------------------------------------------------------------------
The best possible search technologies are now affordable for all companies.
Download your FREE open source Enterprise Search Engine today!
Our experts will assist you in its installation for $59/mo, no commitment.
Test it for FREE on our Cloud platform anytime!
http://pubads.g.doubleclick.net/gampad/clk?id=145328191&iu=/4140/ostg.clktrk

[-- Attachment #3: Type: text/plain, Size: 201 bytes --]

_______________________________________________
ibm-acpi-devel mailing list
ibm-acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
https://lists.sourceforge.net/lists/listinfo/ibm-acpi-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [ibm-acpi-devel] [PATCH] support thinkpad HKEY interface version 0x200
       [not found]         ` <CA+BAWBRa8H_9ANHjMC0sa6GLvuMMY2jcgXxO8Ovp94tD9Pv0vg@mail.gmail.com>
@ 2014-05-26 11:17           ` Shuduo Sang
  0 siblings, 0 replies; 10+ messages in thread
From: Shuduo Sang @ 2014-05-26 11:17 UTC (permalink / raw)
  To: Matthew Garrett
  Cc: linux-kernel, ibm-acpi-devel, ibm-acpi, bruce.ma, hmh,
	platform-drivers-x86

Hi Matthew,

Sorry for asking this again.
Just realize previous email was blocked by mailling list rule.

May I know when the platform driver tree will be pulled next time?

Thanks,
Shuduo

On 2014年05月06日 20:27, Shuduo Sang wrote:
> Hi Matthew,
 >
 > I see Linus tree version continue to increase but seems you did not 
ask platform driver tree pull
 > and my third patch for thinkpad_acpi did not be upstreamed. May I 
know what cycle you used to
 > ask Linus pull?
 >
 > Thanks,
 > Shuduo
 >
 >
 >
 > On Fri, Apr 11, 2014 at 9:55 PM, Shuduo Sang 
<shuduo.sang@canonical.com> wrote:
 >
 >
 >
 >
 >     On Fri, Apr 11, 2014 at 9:43 PM, Matthew Garrett 
<matthew.garrett@nebula.com> wrote:
 >
 >         On Fri, 2014-04-11 at 21:10 +0800, Shuduo Sang wrote:
 >         > Hi Matthew,
 >         >
 >         > This patch is not in your recent for_linus branch. Why?
 >
 >         I'm sorry, I'd somehow missed it. I'll get it in the next pull.
 >
 >
 >     Thanks!
 >
 >
 >         --
 >         Matthew Garrett <matthew.garrett@nebula.com>
 >
 >
 >



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-05-26 11:17 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-11 12:24 [PATCH] support thinkpad HKEY interface version 0x200 Shuduo Sang
2014-04-03 15:44 ` [ibm-acpi-devel] " Henrique de Moraes Holschuh
     [not found]   ` <20140403154427.GB32027-ZGHd14iZgfaRjzvQDGKj+xxZW9W5cXbT@public.gmane.org>
2014-04-03 16:21     ` Shuduo Sang
2014-04-03 17:03       ` [ibm-acpi-devel] " Henrique de Moraes Holschuh
2014-04-11 13:10   ` Shuduo Sang
2014-04-11 13:43     ` Matthew Garrett
2014-04-11 13:55       ` Shuduo Sang
     [not found]         ` <CA+BAWBTb6Z1g-kNsyeAKAGjoUR1vXu3ZC33R+BO3+WH=64USoQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-05-06 12:32           ` Shuduo Sang
     [not found]             ` <CA+BAWBQdGn54LO50Z0iB=X2D0r40Xp8+ryu1=GP7Kzv6PTU9bQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2014-05-26 11:10               ` Shuduo Sang
     [not found]         ` <CA+BAWBRa8H_9ANHjMC0sa6GLvuMMY2jcgXxO8Ovp94tD9Pv0vg@mail.gmail.com>
2014-05-26 11:17           ` [ibm-acpi-devel] " Shuduo Sang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.