From patchwork Mon Aug 1 15:44:36 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Leann Ogasawara X-Patchwork-Id: 107775 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 49D9EB700E for ; Tue, 2 Aug 2011 01:44:59 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1Qnufd-0002Ih-PJ; Mon, 01 Aug 2011 15:44:45 +0000 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1Qnufb-0002IW-OH for kernel-team@lists.ubuntu.com; Mon, 01 Aug 2011 15:44:43 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Qnufb-0002xD-Ja for ; Mon, 01 Aug 2011 15:44:43 +0000 Received: from c-24-21-156-70.hsd1.or.comcast.net ([24.21.156.70] helo=[192.168.1.3]) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1Qnufb-0000mo-2b for kernel-team@lists.ubuntu.com; Mon, 01 Aug 2011 15:44:43 +0000 Subject: [Natty] [PATCH 1/1] pata_marvell: Add support for 88SE91A0, 88SE91A4 From: Leann Ogasawara To: kernel-team Date: Mon, 01 Aug 2011 08:44:36 -0700 Message-ID: <1312213477.20595.13.camel@adamo> Mime-Version: 1.0 X-Mailer: Evolution 2.32.2 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com http://bugs.launchpad.net/bugs/777325 SRU Justification: Impact: Enable support for Marvell IDE PATA controllers found on Asus P8P67LE motherboard. Fix: Upstream commit f920fe1cb74191a780d88937f36994231a8faba1 Patch was cleanly cherry-picked and has been successfully tested by the bug reporter. I'm submitting this for Natty SRU since there are no further 2.6.38.y stable updates coming form upstream. Thanks, Leann From 3f41ebebd86e05528b1e56ddd93eee220eba5218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Drewniak?= Date: Fri, 24 Jun 2011 02:07:35 -0400 Subject: [PATCH] pata_marvell: Add support for 88SE91A0, 88SE91A4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BugLink: http://bugs.launchpad.net/bugs/777325 This patch enables support for Marvell IDE PATA controllers found on Asus P8P67LE motherboard. The formatting has been corrected and I also received a report from two users of this motherboard that the patch works. Signed-off-by: Paweł Drewniak Signed-off-by: Jeff Garzik (cherry picked from commit f920fe1cb74191a780d88937f36994231a8faba1) Signed-off-by: Leann Ogasawara Acked-by: Seth Forshee Acked-by: Andy Whitcroft --- drivers/ata/pata_marvell.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/drivers/ata/pata_marvell.c b/drivers/ata/pata_marvell.c index dd38083..9f4648f 100644 --- a/drivers/ata/pata_marvell.c +++ b/drivers/ata/pata_marvell.c @@ -161,6 +161,9 @@ static const struct pci_device_id marvell_pci_tbl[] = { { PCI_DEVICE(0x11AB, 0x6121), }, { PCI_DEVICE(0x11AB, 0x6123), }, { PCI_DEVICE(0x11AB, 0x6145), }, + { PCI_DEVICE(0x1B4B, 0x91A0), }, + { PCI_DEVICE(0x1B4B, 0x91A4), }, + { } /* terminate list */ };