From patchwork Tue Jan 25 10:54:43 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejun Heo X-Patchwork-Id: 80346 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 2A9D61007D1 for ; Tue, 25 Jan 2011 21:54:50 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752174Ab1AYKyt (ORCPT ); Tue, 25 Jan 2011 05:54:49 -0500 Received: from mail-fx0-f46.google.com ([209.85.161.46]:42931 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751547Ab1AYKys (ORCPT ); Tue, 25 Jan 2011 05:54:48 -0500 Received: by fxm20 with SMTP id 20so5084004fxm.19 for ; Tue, 25 Jan 2011 02:54:47 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:date:from:to:cc:subject:message-id :references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=i5LV96qFQjA92zm+EJrzL53y+fo90j1PTMlx9XH8wLY=; b=oPAWOq08Uq6LdL0s34cG1X8NoeEyjfUJCaDMDMqzX86l3FHyujwTOyeorLVBK0kRfd gPHVii63GfYkD5VKuMMQJHvTDZqKQcvukRnSuiT9ufdRof/4Q5ILuk9fCZbguCvXp0r/ hVgBmvuYmymcMwwxgzk5n5Tg/Cz0Mg7GlXT0s= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=j4rw7fBywSPMo0Oj+AZoN3fMzhtrOEpTWmBZr1JkK210I66ZeIBSM8FCpzeuZTBF3q 7X+cVcUcRNjqYyos5ZT6DmpV1HNDmO0je4X+LsjF8eU+Ri6MtPZAM/2LTFs5pK3ufKgI PMtn3OeNvPGiv6PD9WxiGoiY5i9b1y7xiQY2g= Received: by 10.223.114.209 with SMTP id f17mr5610404faq.136.1295952886874; Tue, 25 Jan 2011 02:54:46 -0800 (PST) Received: from htj.dyndns.org ([130.75.117.88]) by mx.google.com with ESMTPS id y1sm4973535fak.39.2011.01.25.02.54.44 (version=SSLv3 cipher=RC4-MD5); Tue, 25 Jan 2011 02:54:45 -0800 (PST) Date: Tue, 25 Jan 2011 11:54:43 +0100 From: Tejun Heo To: jgarzik@pobox.com Cc: linux-ide@vger.kernel.org, Francesco Antonacci , Sergei Shtylyov Subject: [PATCH UPDATED #upstream-fixes] libata: DVR-212D can't do SETXFER DVD-RW DVR-212D Message-ID: <20110125105443.GR27510@htj.dyndns.org> References: <4D3DA084.9070609@gmail.com> <20110124160125.GC27510@htj.dyndns.org> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20110124160125.GC27510@htj.dyndns.org> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-ide-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-ide@vger.kernel.org From: Francesco Antonacci PIONEER DVR-212D can't do SETXFER like its sibling DVRTD08. Add ATA_HORKAGE_NOSETXFER for it. Reported in bko#27502. https://bugzilla.kernel.org/show_bug.cgi?id=27502 Signed-off-by: Francesco Antonacci Acked-by: Tejun Heo --- s/to/do/ as pointed out by Sergei. :-) Thanks. drivers/ata/libata-core.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 diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c index a31fe96..d4e52e2 100644 --- a/drivers/ata/libata-core.c +++ b/drivers/ata/libata-core.c @@ -4138,6 +4138,7 @@ static const struct ata_blacklist_entry ata_device_blacklist [] = { * device and controller are SATA. */ { "PIONEER DVD-RW DVRTD08", "1.00", ATA_HORKAGE_NOSETXFER }, + { "PIONEER DVD-RW DVR-212D", "1.28", ATA_HORKAGE_NOSETXFER }, /* End Marker */ { }