From patchwork Fri Sep 10 23:36:39 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Seth Heasley X-Patchwork-Id: 170672 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 o8ANiohC006131 for ; Fri, 10 Sep 2010 23:44:50 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755006Ab0IJXot (ORCPT ); Fri, 10 Sep 2010 19:44:49 -0400 Received: from mga01.intel.com ([192.55.52.88]:20868 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754885Ab0IJXot (ORCPT ); Fri, 10 Sep 2010 19:44:49 -0400 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 10 Sep 2010 16:44:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.56,348,1280732400"; d="scan'208";a="836713358" Received: from unknown (HELO linux-0rue.localnet) ([10.7.160.103]) by fmsmga001.fm.intel.com with ESMTP; 10 Sep 2010 16:44:48 -0700 From: Seth Heasley Organization: Intel Corporation To: linux-kernel@vger.kernel.org Subject: [PATCH 2.6.35.4] irq: irq and pci_ids patch for Intel Patsburg DeviceIDs Date: Fri, 10 Sep 2010 16:36:39 -0700 User-Agent: KMail/1.10.3 (Linux/2.6.27.7-9-default; KDE/4.1.3; x86_64; ; ) Cc: linux-pci@vger.kernel.org, jbarnes@virtuousgeek.org, khali@linux-fr.org, seth.heasley@intel.com References: <201003251611.37706.seth.heasley@intel.com> In-Reply-To: <201003251611.37706.seth.heasley@intel.com> MIME-Version: 1.0 Content-Disposition: inline Message-Id: <201009101636.39962.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]); Fri, 10 Sep 2010 23:44:50 +0000 (UTC) --- linux-2.6.35.4/include/linux/pci_ids.h.orig 2010-08-26 16:47:12.000000000 -0700 +++ linux-2.6.35.4/include/linux/pci_ids.h 2010-09-10 16:34:06.000000000 -0700 @@ -2423,6 +2423,7 @@ #define PCI_DEVICE_ID_INTEL_CPT_SMBUS 0x1c22 #define PCI_DEVICE_ID_INTEL_CPT_LPC_MIN 0x1c41 #define PCI_DEVICE_ID_INTEL_CPT_LPC_MAX 0x1c5f +#define PCI_DEVICE_ID_INTEL_PBG_LPC 0x1d40 #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.35.4/arch/x86/pci/irq.c.orig 2010-08-26 16:47:12.000000000 -0700 +++ linux-2.6.35.4//arch/x86/pci/irq.c 2010-09-10 16:30:39.000000000 -0700 @@ -589,6 +589,7 @@ 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_PBG_LPC: r->name = "PIIX/ICH"; r->get = pirq_piix_get; r->set = pirq_piix_set;