From patchwork Tue Jul 21 17:57:59 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Milburn X-Patchwork-Id: 30050 X-Patchwork-Delegate: davem@davemloft.net 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.176.167]) by bilbo.ozlabs.org (Postfix) with ESMTP id 3CC88B7093 for ; Wed, 22 Jul 2009 05:32:47 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755548AbZGUTco (ORCPT ); Tue, 21 Jul 2009 15:32:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755646AbZGUTco (ORCPT ); Tue, 21 Jul 2009 15:32:44 -0400 Received: from mx2.redhat.com ([66.187.237.31]:41506 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755548AbZGUTco (ORCPT ); Tue, 21 Jul 2009 15:32:44 -0400 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n6LJVlZQ018093; Tue, 21 Jul 2009 15:31:47 -0400 Received: from ns3.rdu.redhat.com (ns3.rdu.redhat.com [10.11.255.199]) by int-mx2.corp.redhat.com (8.13.1/8.13.1) with ESMTP id n6LJVjWf024119; Tue, 21 Jul 2009 15:31:46 -0400 Received: from dhcp-210.hsv.redhat.com (vpn-10-145.rdu.redhat.com [10.11.10.145]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n6LJVj10014692; Tue, 21 Jul 2009 15:31:45 -0400 Received: from dhcp-210.hsv.redhat.com (localhost.localdomain [127.0.0.1]) by dhcp-210.hsv.redhat.com (8.13.1/8.13.1) with ESMTP id n6LIBoJn004257; Tue, 21 Jul 2009 13:11:51 -0500 Received: (from dmilburn@localhost) by dhcp-210.hsv.redhat.com (8.13.1/8.13.1/Submit) id n6LI3J9f005955; Tue, 21 Jul 2009 13:03:19 -0500 Date: Tue, 21 Jul 2009 12:57:59 -0500 From: David Milburn To: jeff@garzik.org Cc: linux-ide@vger.kernel.org Subject: [PATCH #upstream-fixes] ahci add device ID for Ibex Peak ahci controller Message-ID: <20090721175759.GA5929@dhcp-210.hsv.redhat.com> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Scanned-By: MIMEDefang 2.58 on 172.16.27.26 Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Jaroslav Kysela Add device ID for Ibex Peak 6 port SATA AHCI Controller Signed-off-by: David Milburn --- drivers/ata/ahci.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-ide" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 336eb1e..c342551 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -515,6 +515,7 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */ { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */ { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */ + { PCI_VDEVICE(INTEL, 0x3b22), board_ahci }, /* PCH AHCI */ { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */ { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */ { PCI_VDEVICE(INTEL, 0x3b2b), board_ahci }, /* PCH RAID */