From patchwork Wed Nov 25 17:12:11 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 39372 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 1F5D2B7067 for ; Thu, 26 Nov 2009 04:22:24 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934800AbZKYRMx (ORCPT ); Wed, 25 Nov 2009 12:12:53 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S934744AbZKYRMw (ORCPT ); Wed, 25 Nov 2009 12:12:52 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:57477 "EHLO mail-fx0-f213.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759424AbZKYRMu (ORCPT ); Wed, 25 Nov 2009 12:12:50 -0500 Received: by fxm5 with SMTP id 5so7215294fxm.28 for ; Wed, 25 Nov 2009 09:12:55 -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=THGjbEFE2KNmvPndec4ar2fU+RBNum0EpLePgS9DirQ=; b=Z9+YQVUCQOberBgkDjwjgyX4hy7DKGfccRgaXT44A3sDeVMpUkKjGqLz5tY4ZJ998Z 6LqDLDhn8wdv/0l793mAoWRfQh14XTbTaR3YfCQ8y/LgXRsvxnvefoLwElDnzzkKBJ3r bYx3vwbtbulbVr6ijl1PAXWIW8DZpiMzIfoqc= 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=vgUWDCxalm/eTvIekMzxwfsLgOF9pqYOw8FllA/I3dFFObCzBaE8P7GMuGoXe11tRx mIYSz1fnHxhwm0pUkC8dS5bpjrI3Pzqw/9g9EH9WIftNo5BoyojJ6Vvwu4QoFeKuJTld LBL5/TCqWPaq2YBAWbui93PSdUxoJONjuohe4= Received: by 10.216.88.139 with SMTP id a11mr476762wef.50.1259169175372; Wed, 25 Nov 2009 09:12:55 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id g9sm14660401gvc.25.2009.11.25.09.12.54 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 25 Nov 2009 09:12:54 -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:12:11 +0100 Message-Id: <20091125171211.5446.594.sendpatchset@localhost> In-Reply-To: <20091125170218.5446.13513.sendpatchset@localhost> References: <20091125170218.5446.13513.sendpatchset@localhost> Subject: [PATCH 81/86] pata_via: add 32-bit PIO 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_via: add 32-bit PIO support There shouldn't be any problems with it as IDE via82cxxx host driver has been using 32-bit PIO operations for years. Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/ata/pata_via.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_via.c =================================================================== --- a/drivers/ata/pata_via.c +++ b/drivers/ata/pata_via.c @@ -420,7 +420,7 @@ static struct scsi_host_template via_sht }; static struct ata_port_operations via_port_ops = { - .inherits = &ata_bmdma_port_ops, + .inherits = &ata_bmdma32_port_ops, .cable_detect = via_cable_detect, .set_piomode = via_set_piomode, .set_dmamode = via_set_dmamode,