From patchwork Wed Nov 25 17:07:48 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bartlomiej Zolnierkiewicz X-Patchwork-Id: 39355 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 006B0B7067 for ; Thu, 26 Nov 2009 04:22:12 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932528AbZKYRIa (ORCPT ); Wed, 25 Nov 2009 12:08:30 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932904AbZKYRI3 (ORCPT ); Wed, 25 Nov 2009 12:08:29 -0500 Received: from mail-fx0-f213.google.com ([209.85.220.213]:60004 "EHLO mail-fx0-f213.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932846AbZKYRI1 (ORCPT ); Wed, 25 Nov 2009 12:08:27 -0500 Received: by fxm5 with SMTP id 5so7210210fxm.28 for ; Wed, 25 Nov 2009 09:08:32 -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=JfXMtNBvzQDwH1C/cckL0giAPaF//wT59lYTcM+tM18=; b=w3Koe+qdXaT+CI0Fjb1VNbeiDKjeuecJcUpwT+vizOv+d12yPH20H2Tr6S5iJY/5Nb 0HGilP4sNS+orgrxdpcUg+QUCfxgorgHIKikX8gJ0K85IFdWkEyOfUwkZPc/a5/urb+j BVrQLlwLuKvEddO2fy7q+ss4ejxNp1MPAKu4k= 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=o9NZcZAw9DGAysiVh73K5bgAk/JaEbuY7XQiJYTFrV9OLkuSAfr0mxHrbJDZmbUj+s FQ45BSa3bvM9XXHF8cU7qhiOPl/3TeklcpCZox96XMiSDnAN9Wgs/LKJJWLlEAv9fGnm 6oz2RUvLPndSuW+5zOLXmc4TxsZ9WaeOxX+Zg= Received: by 10.216.86.14 with SMTP id v14mr2390715wee.183.1259168911732; Wed, 25 Nov 2009 09:08:31 -0800 (PST) Received: from ?127.0.0.1? (chello089079027028.chello.pl [89.79.27.28]) by mx.google.com with ESMTPS id q9sm14675851gve.0.2009.11.25.09.08.30 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 25 Nov 2009 09:08:31 -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:07:48 +0100 Message-Id: <20091125170748.5446.82207.sendpatchset@localhost> In-Reply-To: <20091125170218.5446.13513.sendpatchset@localhost> References: <20091125170218.5446.13513.sendpatchset@localhost> Subject: [PATCH 46/86] pata_legacy: fix QDI6580DP 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_legacy: fix QDI6580DP support Dual port QDI6580 has shared PIO timings for master/slave devices so it needs to use custom ->qc_issue method. Signed-off-by: Bartlomiej Zolnierkiewicz --- drivers/ata/pata_legacy.c | 1 + 1 file changed, 1 insertion(+) -- 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_legacy.c =================================================================== --- a/drivers/ata/pata_legacy.c +++ b/drivers/ata/pata_legacy.c @@ -787,6 +787,7 @@ static struct ata_port_operations qdi658 static struct ata_port_operations qdi6580dp_port_ops = { .inherits = &legacy_base_port_ops, .set_piomode = qdi6580dp_set_piomode, + .qc_issue = qdi_qc_issue, .sff_data_xfer = vlb32_data_xfer, };