From patchwork Wed Nov 17 19:12:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seth Heasley X-Patchwork-Id: 333981 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id oAHJL5YS012479 for ; Wed, 17 Nov 2010 19:21:24 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935224Ab0KQTVX (ORCPT ); Wed, 17 Nov 2010 14:21:23 -0500 Received: from mga11.intel.com ([192.55.52.93]:26948 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934924Ab0KQTVX (ORCPT ); Wed, 17 Nov 2010 14:21:23 -0500 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga102.fm.intel.com with ESMTP; 17 Nov 2010 11:21:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.59,212,1288594800"; d="scan'208";a="627772378" Received: from unknown (HELO linux-0rue.localnet) ([10.7.161.149]) by fmsmga002.fm.intel.com with ESMTP; 17 Nov 2010 11:21:22 -0800 From: Seth Heasley Organization: Intel Corporation To: jbarnes@virtuousgeek.org, linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 2.6.37-rc2] irq: irq and pci_ids patch for Intel Patsburg Date: Wed, 17 Nov 2010 12:12:08 -0700 User-Agent: KMail/1.10.3 (Linux/2.6.27.7-9-default; KDE/4.1.3; x86_64; ; ) Cc: seth.heasley@intel.com MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201011171112.08712.seth.heasley@intel.com> Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Wed, 17 Nov 2010 19:21:24 +0000 (UTC) --- linux-2.6.37-rc2/include/linux/pci_ids.h.orig 2010-11-17 10:00:31.000000000 -0800 +++ linux-2.6.37-rc2/include/linux/pci_ids.h 2010-11-17 10:01:49.000000000 -0800 @@ -2466,7 +2466,8 @@ #define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MIN 0x1c41 #define PCI_DEVICE_ID_INTEL_COUGARPOINT_LPC_MAX 0x1c5f #define PCI_DEVICE_ID_INTEL_PATSBURG_SMBUS 0x1d22 -#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC 0x1d40 +#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0 0x1d40 +#define PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1 0x1d41 #define PCI_DEVICE_ID_INTEL_82801AA_0 0x2410 #define PCI_DEVICE_ID_INTEL_82801AA_1 0x2411 #define PCI_DEVICE_ID_INTEL_82801AA_3 0x2413 --- linux-2.6.37-rc2/arch/x86/pci/irq.c.orig 2010-11-17 10:01:13.000000000 -0800 +++ linux-2.6.37-rc2/arch/x86/pci/irq.c 2010-11-17 10:01:33.000000000 -0800 @@ -589,7 +589,8 @@ case PCI_DEVICE_ID_INTEL_ICH10_1: case PCI_DEVICE_ID_INTEL_ICH10_2: case PCI_DEVICE_ID_INTEL_ICH10_3: - case PCI_DEVICE_ID_INTEL_PATSBURG_LPC: + case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_0: + case PCI_DEVICE_ID_INTEL_PATSBURG_LPC_1: r->name = "PIIX/ICH"; r->get = pirq_piix_get; r->set = pirq_piix_set;