From patchwork Fri Jun 26 15:44:11 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Milburn X-Patchwork-Id: 29196 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 752D8B7066 for ; Sat, 27 Jun 2009 01:46:02 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750757AbZFZPp5 (ORCPT ); Fri, 26 Jun 2009 11:45:57 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1750964AbZFZPp5 (ORCPT ); Fri, 26 Jun 2009 11:45:57 -0400 Received: from mx2.redhat.com ([66.187.237.31]:33725 "EHLO mx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750757AbZFZPp4 (ORCPT ); Fri, 26 Jun 2009 11:45:56 -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 n5QFj1iN008775; Fri, 26 Jun 2009 11:45:01 -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 n5QFiwFW023256; Fri, 26 Jun 2009 11:44:58 -0400 Received: from dhcp-210.hsv.redhat.com (vpn-51-40.sfbay.redhat.com [10.14.51.40]) by ns3.rdu.redhat.com (8.13.8/8.13.8) with ESMTP id n5QFiuYf030040; Fri, 26 Jun 2009 11:44:57 -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 n5QFiDGV006475; Fri, 26 Jun 2009 10:44:14 -0500 Received: (from dmilburn@localhost) by dhcp-210.hsv.redhat.com (8.13.1/8.13.1/Submit) id n5QFiCHT006474; Fri, 26 Jun 2009 10:44:12 -0500 Date: Fri, 26 Jun 2009 10:44:11 -0500 From: David Milburn To: jeff@garzik.org Cc: linux-ide@vger.kernel.org Subject: [PATCH] ahci: add device ID for 82801JI sata controller Message-ID: <20090626154411.GB6433@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: Mark Goodwin Add device ID for Intel 82801JI 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 15a2303..336eb1e 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -513,6 +513,7 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x502a), board_ahci }, /* Tolapai */ { PCI_VDEVICE(INTEL, 0x502b), board_ahci }, /* Tolapai */ { PCI_VDEVICE(INTEL, 0x3a05), board_ahci }, /* ICH10 */ + { PCI_VDEVICE(INTEL, 0x3a22), board_ahci }, /* ICH10 */ { PCI_VDEVICE(INTEL, 0x3a25), board_ahci }, /* ICH10 */ { PCI_VDEVICE(INTEL, 0x3b24), board_ahci }, /* PCH RAID */ { PCI_VDEVICE(INTEL, 0x3b25), board_ahci }, /* PCH RAID */