From patchwork Fri Apr 27 06:42:30 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Johnson X-Patchwork-Id: 155387 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 E170AB6F9D for ; Fri, 27 Apr 2012 16:47:47 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752057Ab2D0Grm (ORCPT ); Fri, 27 Apr 2012 02:47:42 -0400 Received: from citesht4.cites.illinois.edu ([192.17.212.154]:20156 "EHLO citesht4.cites.illinois.edu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752632Ab2D0Grk (ORCPT ); Fri, 27 Apr 2012 02:47:40 -0400 X-Greylist: delayed 308 seconds by postgrey-1.27 at vger.kernel.org; Fri, 27 Apr 2012 02:47:40 EDT Received: from [192.168.1.197] (192.17.212.130) by smtp.illinois.edu (192.17.212.154) with Microsoft SMTP Server (TLS) id 14.1.355.2; Fri, 27 Apr 2012 01:42:31 -0500 Message-ID: <4F9A3FD6.7060206@illinois.edu> Date: Fri, 27 Apr 2012 01:42:30 -0500 From: Matt Johnson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:11.0) Gecko/20120410 Thunderbird/11.0.1 MIME-Version: 1.0 To: CC: , Subject: [PATCH 1/1] ahci: Detect Marvell 88SE9172 SATA controller X-Originating-IP: [192.17.212.130] Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org The Marvell 88SE9172 SATA controller (PCI ID 1b4b 917a) already worked once it was detected, but was missing an ahci_pci_tbl entry. Boot tested on a Gigabyte Z68X-UD3H-B3 motherboard. Signed-off-by: Matt Johnson --- drivers/ata/ahci.c | 2 ++ 1 file changed, 2 insertions(+) { PCI_DEVICE(0x1b4b, 0x91a3), .driver_data = board_ahci_yes_fbs }, diff --git a/drivers/ata/ahci.c b/drivers/ata/ahci.c index 79a1e9d..ebaf67e 100644 --- a/drivers/ata/ahci.c +++ b/drivers/ata/ahci.c @@ -394,6 +394,8 @@ static const struct pci_device_id ahci_pci_tbl[] = { .driver_data = board_ahci_yes_fbs }, /* 88se9128 */ { PCI_DEVICE(0x1b4b, 0x9125), .driver_data = board_ahci_yes_fbs }, /* 88se9125 */ + { PCI_DEVICE(0x1b4b, 0x917a), + .driver_data = board_ahci_yes_fbs }, /* 88se9172 */