From patchwork Wed Jan 4 15:43:34 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mika Westerberg X-Patchwork-Id: 711036 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3ttw8Q0GG9z9t1Q for ; Thu, 5 Jan 2017 02:43:50 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S968552AbdADPnl (ORCPT ); Wed, 4 Jan 2017 10:43:41 -0500 Received: from mga03.intel.com ([134.134.136.65]:59615 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757626AbdADPnj (ORCPT ); Wed, 4 Jan 2017 10:43:39 -0500 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga103.jf.intel.com with ESMTP; 04 Jan 2017 07:43:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,459,1477983600"; d="scan'208";a="918875982" Received: from black.fi.intel.com ([10.237.72.28]) by orsmga003.jf.intel.com with ESMTP; 04 Jan 2017 07:43:35 -0800 Received: by black.fi.intel.com (Postfix, from userid 1001) id E86EFDC; Wed, 4 Jan 2017 17:43:34 +0200 (EET) From: Mika Westerberg To: Thierry Reding Cc: linux-pwm@vger.kernel.org, Mika Westerberg , Andy Shevchenko Subject: [PATCH] pwm: lpss: Add Intel Gemini Lake PCI ID Date: Wed, 4 Jan 2017 18:43:34 +0300 Message-Id: <20170104154334.29046-1-mika.westerberg@linux.intel.com> X-Mailer: git-send-email 2.11.0 Sender: linux-pwm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pwm@vger.kernel.org Intel Gemini Lake PWM is pretty much same as used in Intel Broxton. Add this new PCI ID to the list of supported devices. Signed-off-by: Mika Westerberg --- Hi, this is on top of Andy's series here: https://patchwork.ozlabs.org/patch/710104/ https://patchwork.ozlabs.org/patch/710107/ https://patchwork.ozlabs.org/patch/710105/ https://patchwork.ozlabs.org/patch/710106/ drivers/pwm/pwm-lpss-pci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/pwm/pwm-lpss-pci.c b/drivers/pwm/pwm-lpss-pci.c index dfe0a2e8e4de..2c2ca370dc26 100644 --- a/drivers/pwm/pwm-lpss-pci.c +++ b/drivers/pwm/pwm-lpss-pci.c @@ -78,6 +78,7 @@ static const struct pci_device_id pwm_lpss_pci_ids[] = { { PCI_VDEVICE(INTEL, 0x1ac8), PWM_LPSS_BXT }, { PCI_VDEVICE(INTEL, 0x2288), PWM_LPSS_BSW }, { PCI_VDEVICE(INTEL, 0x2289), PWM_LPSS_BSW }, + { PCI_VDEVICE(INTEL, 0x31c8), PWM_LPSS_BXT }, { PCI_VDEVICE(INTEL, 0x5ac8), PWM_LPSS_BXT }, { }, };