Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751755AbdHAB5G (ORCPT ); Mon, 31 Jul 2017 21:57:06 -0400 Received: from mail.frhoelzlwimmer.de ([79.143.178.148]:53440 "EHLO mail.frhoelzlwimmer.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751327AbdHAB5E (ORCPT ); Mon, 31 Jul 2017 21:57:04 -0400 X-Greylist: delayed 578 seconds by postgrey-1.27 at vger.kernel.org; Mon, 31 Jul 2017 21:57:04 EDT From: Hoeze To: lee.jones@linaro.org Cc: linux-kernel@vger.kernel.org, git.ich@frhoelzlwimmer.de Subject: [PATCH] Fix missing PCI ID (thanks to CoolStar); Necessary for Lenovo Yoga 720-15 Touchpad Date: Tue, 1 Aug 2017 03:47:15 +0200 Message-Id: <20170801014715.27708-1-git.ich@frhoelzlwimmer.de> X-Mailer: git-send-email 2.13.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 996 Lines: 24 --- This patch fixes a missing PCI ID which is necessary for the Lenovo Yoga 720-15 Touchpad to work. See this bug report on Launchpad: https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1700657 Many thanks to CoolStar, who found this solution! 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 16ffeaeb1385..867df181d475 100644 --- a/drivers/mfd/intel-lpss-pci.c +++ b/drivers/mfd/intel-lpss-pci.c @@ -208,6 +208,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.13.3