From patchwork Fri Nov 6 02:16:49 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Charles_Rose@Dell.com X-Patchwork-Id: 540788 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.180.67]) by ozlabs.org (Postfix) with ESMTP id DF48E1402D7 for ; Fri, 6 Nov 2015 13:26:27 +1100 (AEDT) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=dell.com header.i=@dell.com header.b=ISsDhaCV; dkim-atps=neutral Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1031663AbbKFC00 (ORCPT ); Thu, 5 Nov 2015 21:26:26 -0500 Received: from ausxipps301.us.dell.com ([143.166.148.223]:10930 "EHLO ausxipps301.us.dell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1031154AbbKFC00 convert rfc822-to-8bit (ORCPT ); Thu, 5 Nov 2015 21:26:26 -0500 X-Greylist: delayed 573 seconds by postgrey-1.27 at vger.kernel.org; Thu, 05 Nov 2015 21:26:26 EST DomainKey-Signature: s=smtpout; d=dell.com; c=nofws; q=dns; h=X-LoopCount0:X-IronPort-AV:From:To:CC:Date:Subject: Thread-Topic:Thread-Index:Message-ID:Accept-Language: Content-Language:X-MS-Has-Attach:X-MS-TNEF-Correlator: acceptlanguage:Content-Type:Content-Transfer-Encoding: MIME-Version; b=QSBZvwIWmndDnGMcAMdzKgSKEV9SPTy+G4mxZ+OQf5o7O6kIAXLKM/BN EB5My20eL0CUXwa7YrbEqvTxTTvTz1cnAZGpQmcvu5O+asybETMWZVNqw VJuZntSUgk/J6WtI+fJCmR8nwGa9EvM/6TtntfZHLjNCGdNjUjjLPW8id A=; DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=dell.com; i=@dell.com; q=dns/txt; s=smtpout; t=1446776786; x=1478312786; h=from:to:cc:date:subject:message-id: content-transfer-encoding:mime-version; bh=AvM25QJ/ymyRdlWuTosLovS79HgEuBkXVOI+GLjZS10=; b=ISsDhaCVkE7TAg1O3zcRVszqNNKQ/iVb8Ei4cIPte9U0dLtLUvdobrI/ hZHuEdbLNkhTNTJZJlTzANls5+q+jD2Gd6/CuW1UDRKrcaiGkrlRIXeDN DOA/62lrUd7atVTQLGjZkqbX6G1WOZ5xPFovt2sCrhG9YCaUPWrI/Vdk7 Q=; X-LoopCount0: from 10.170.28.39 X-IronPort-AV: E=Sophos;i="5.20,250,1444712400"; d="scan'208";a="725935720" From: To: , CC: , Date: Thu, 5 Nov 2015 20:16:49 -0600 Subject: [PATCH] ahci: Add Device ID for Intel Sunrise Point PCH Thread-Topic: [PATCH] ahci: Add Device ID for Intel Sunrise Point PCH Thread-Index: AdEYOTN49iGsh+nbRoyxvUVWCost4A== Message-ID: <1446776209-14006-1-git-send-email-charles_rose@dell.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org This patch adds a new AHCI RAID SATA Device ID for the Intel Sunrise Point PCH. Signed-off-by: Charles Rose Signed-off-by: Nanda Kishore Chinna --- drivers/ata/ahci.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index a466602..b44f2bb 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -342,6 +342,7 @@ static const struct pci_device_id ahci_pci_tbl[] = { { PCI_VDEVICE(INTEL, 0x9d07), board_ahci }, /* Sunrise Point-LP RAID */ { PCI_VDEVICE(INTEL, 0xa103), board_ahci }, /* Sunrise Point-H AHCI */ { PCI_VDEVICE(INTEL, 0xa105), board_ahci }, /* Sunrise Point-H RAID */ + { PCI_VDEVICE(INTEL, 0xa106), board_ahci }, /* Sunrise Point-H RAID */ { PCI_VDEVICE(INTEL, 0xa107), board_ahci }, /* Sunrise Point-H RAID */ { PCI_VDEVICE(INTEL, 0xa10f), board_ahci }, /* Sunrise Point-H RAID */