Message ID | ff770543cd53ae818363c0fe86477965@mail.eclipso.de |
---|---|
State | Accepted |
Commit | 642aa86eaf8f1e6fe894f20fd7f12f0db52ee03c |
Headers | show |
Series | Add a second working PNP_ID for a T470s | expand |
Hi again, as I never got any reply, I would like to ask again, if there is anything I can do to omit the error message (rmi4_physical rmi4-00: Failed to read irqs, code=-6) on shutdown? Thank you very much and best Dennis --- Ursprüngliche Nachricht --- Von: " " <denk@eclipso.email> Datum: 08.06.2020 11:05:54 An: <denk@eclipso.email> Betreff: Re: Re: Re: Re: Re: Add a second working PNP_ID for a T470s Hi again, is there anything I can do to omit the error message (rmi4_physical rmi4-00: Failed to read irqs, code=-6) on shutdown? Thanks and best Dennis --- Ursprüngliche Nachricht --- Von: " " <denk@eclipso.email> Datum: 27.05.2020 14:29:24 An: "Dmitry Torokhov" <dmitry.torokhov@gmail.com> Betreff: Re: Re: Re: Re: Add a second working PNP_ID for a T470s Hi Dmitry, thank you very much! Regarding my additional question about the error message: Is it possible, to omit this error on shutdown? Thanks and best Dennis --- Ursprüngliche Nachricht --- Von: Dmitry Torokhov <dmitry.torokhov@gmail.com> Datum: 27.05.2020 08:10:19 An: <denk@eclipso.email> Betreff: Re: Re: Re: Add a second working PNP_ID for a T470s Hi Dennis, On Fri, May 22, 2020 at 01:42:35PM +0200, wrote: > Hi Dmitry, > > as far as I can see, there was no reply from you. If so, then I may have missed that, sorry for that. > As I said I am not aware of any issues when running the touchpad and trackpoint with RMI4. The only difference is the mentioned error message during shutdown, which I would like to get rid of, if possible. > Can the patch be merged? Anything missing for that? Sorry, my fault as I have been busy lately and my patch queue grew really long. The patch is applied, thank you for your work (and patience). Thanks. -- Dmitry --- ________________________________________________________ Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte E-Mail-Adresse mitnehmen! https://www.eclipso.de --- ________________________________________________________ Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte E-Mail-Adresse mitnehmen! https://www.eclipso.de --- ________________________________________________________ Ihre E-Mail-Postfächer sicher & zentral an einem Ort. Jetzt wechseln und alte E-Mail-Adresse mitnehmen! https://www.eclipso.de
diff --git a/drivers/input/mouse/synaptics.c b/drivers/input/mouse/synaptics.c index 4d2036209b45d..758dae8d65006 100644 --- a/drivers/input/mouse/synaptics.c +++ b/drivers/input/mouse/synaptics.c @@ -170,6 +170,7 @@ static const char * const smbus_pnp_ids[] = { "LEN005b", /* P50 */ "LEN005e", /* T560 */ "LEN006c", /* T470s */ + "LEN007a", /* T470s */ "LEN0071", /* T480 */ "LEN0072", /* X1 Carbon Gen 5 (2017) - Elan/ALPS trackpoint */ "LEN0073", /* X1 Carbon G5 (Elantech) */
The Lenovo Thinkpad T470s I own has a different touchpad with "LEN007a" instead of the already included PNP ID "LEN006c". However, my touchpad seems to work well without any problems using RMI. So this patch adds the other PNP ID. Signed-off-by: Dennis Kadioglu <denk@eclipso.email> --- drivers/input/mouse/synaptics.c | 1 + 1 file changed, 1 insertion(+) --- ---