From patchwork Wed Nov 25 17:03:30 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 39390 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 ozlabs.org (Postfix) with ESMTP id 21A81100A2E for ; Thu, 26 Nov 2009 04:28:38 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759054AbZKYREO (ORCPT ); Wed, 25 Nov 2009 12:04:14 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1758994AbZKYREN (ORCPT ); Wed, 25 Nov 2009 12:04:13 -0500 Received: from mail-ew0-f219.google.com ([209.85.219.219]:52887 "EHLO mail-ew0-f219.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758962AbZKYREJ (ORCPT ); Wed, 25 Nov 2009 12:04:09 -0500 Received: by mail-ew0-f219.google.com with SMTP id 19so593484ewy.21 for ; Wed, 25 Nov 2009 09:04:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:date:message-id :in-reply-to:references:subject; bh=ujeSNt0o+jyzd7LcZ88uR5hGr4/88VqtFNvYv2WDD2I=; b=xQJzfV2Fgg+vxQFuZb7Up54AG0RVV72PpmwSkyU4tkH9NPps1SgB2S5WTk6ygMgkPa WdKTI3nAI7xkwjSW3Aw1+Si4nQdv+MUOYf163NlD615CFXHkLBc6bIqUEQy1c5aVbXnl j1ko+NYTGT5Umien8IzbHI8gRZOmXWD2pJ7bk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:date:message-id:in-reply-to:references:subject; b=HkgyPB0kZws5dVEt8/C24dvvppHLAX/EHdJZKC5QYLScUkaovn94hSgNqSN7v4AA1u 5rcpvzwsI5wyuiVY6rMPX/dOHHOGHNP3WIGLilUT087Q4Y2vXLMMKP8mtvfZrv/C7U+F DMsZiA1VFYJH7Jt7mqfATa9borS4IhDgBIWiY= Received: by 10.216.85.134 with SMTP id u6mr959603wee.213.1259168653843; Wed, 25 Nov 2009 09:04:13 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id n12sm14649759gve.14.2009.11.25.09.04.12 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 25 Nov 2009 09:04:13 -0800 (PST) From: Bartlomiej Zolnierkiewicz To: linux-ide@vger.kernel.org Cc: Bartlomiej Zolnierkiewicz , linux-kernel@vger.kernel.org Date: Wed, 25 Nov 2009 18:03:30 +0100 Message-Id: <20091125170330.5446.53045.sendpatchset@localhost> In-Reply-To: <20091125170218.5446.13513.sendpatchset@localhost> References: <20091125170218.5446.13513.sendpatchset@localhost> Subject: [PATCH 10/86] pata_atiixp: add MWDMA0 support Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Bartlomiej Zolnierkiewicz Subject: [PATCH] pata_atiixp: add MWDMA0 support There shouldn't be any problems with it as IDE atiixp host driver has been allowing MWDMA0 mode for last two years. Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/ata/pata_atiixp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 Index: b/drivers/ata/pata_atiixp.c =================================================================== --- a/drivers/ata/pata_atiixp.c +++ b/drivers/ata/pata_atiixp.c @@ -207,7 +207,7 @@ static int atiixp_init_one(struct pci_de static const struct ata_port_info info = { .flags = ATA_FLAG_SLAVE_POSS, .pio_mask = ATA_PIO4, - .mwdma_mask = ATA_MWDMA12_ONLY, + .mwdma_mask = ATA_MWDMA2, .udma_mask = ATA_UDMA5, .port_ops = &atiixp_port_ops };