Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753394AbdHPAsr (ORCPT ); Tue, 15 Aug 2017 20:48:47 -0400 Received: from mail-pg0-f66.google.com ([74.125.83.66]:37380 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752417AbdHPAsp (ORCPT ); Tue, 15 Aug 2017 20:48:45 -0400 From: Daniel Axtens To: Hoeze , lee.jones@linaro.org, linux-kernel@vger.kernel.org Cc: coolstarorganization@gmail.com, mykesx@gmail.com, bjodah@gmail.com, git.ich@frhoelzlwimmer.de Subject: Re: [PATCH v3] Fix missing PCI ID; Necessary for Lenovo Yoga 720-15 Touchpad. In-Reply-To: <20170812201620.20129-1-git.ich@frhoelzlwimmer.de> References: <20170812201620.20129-1-git.ich@frhoelzlwimmer.de> Date: Wed, 16 Aug 2017 10:48:39 +1000 Message-ID: <87o9rge3rs.fsf@linkitivity.dja.id.au> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id v7G0mr0U001731 Content-Length: 1600 Lines: 45 Hi all, This has worked its way from a pull request on GitHub through to this patch, which is a great credit to the determination and effort of Florian. I think it's an excellent first contribution. Reviewed-by: Daniel Axtens Regards, Daniel Hoeze writes: > From: Hoeze > > This patch adds a missing PCI ID to the Intel LPSS driver. > It fixes a bug causing the touchpad of the Lenovo Yoga 720-15 not to be recognized. > See also bug 1700657 on bugs.launchpad.net. > > Many thanks to CoolStar, who found this solution! > > Reported-by: CoolStar > Tested-by: Mike Schwartz > Tested-by: Björn Dahlgren > Signed-off-by: Florian R. Hölzlwimmer > --- > drivers/mfd/intel-lpss-pci.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mfd/intel-lpss-pci.c b/drivers/mfd/intel-lpss-pci.c > index ad388bb0..d1c46de8 100644 > --- a/drivers/mfd/intel-lpss-pci.c > +++ b/drivers/mfd/intel-lpss-pci.c > @@ -221,6 +221,7 @@ static const struct pci_device_id intel_lpss_pci_ids[] = { > { PCI_VDEVICE(INTEL, 0xa12a), (kernel_ulong_t)&spt_info }, > { PCI_VDEVICE(INTEL, 0xa160), (kernel_ulong_t)&spt_i2c_info }, > { PCI_VDEVICE(INTEL, 0xa161), (kernel_ulong_t)&spt_i2c_info }, > + { PCI_VDEVICE(INTEL, 0xa162), (kernel_ulong_t)&spt_i2c_info }, > { PCI_VDEVICE(INTEL, 0xa166), (kernel_ulong_t)&spt_uart_info }, > /* KBL-H */ > { PCI_VDEVICE(INTEL, 0xa2a7), (kernel_ulong_t)&spt_uart_info }, > -- > 2.14.1