From patchwork Mon Jan 24 16:01:25 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tejun Heo X-Patchwork-Id: 80193 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 7C66B1007D1 for ; Tue, 25 Jan 2011 03:02:16 +1100 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753191Ab1AXQCP (ORCPT ); Mon, 24 Jan 2011 11:02:15 -0500 Received: from mail-gy0-f174.google.com ([209.85.160.174]:38748 "EHLO mail-gy0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752906Ab1AXQCO (ORCPT ); Mon, 24 Jan 2011 11:02:14 -0500 Received: by gyb11 with SMTP id 11so1323779gyb.19 for ; Mon, 24 Jan 2011 08:02:13 -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=j++4yjkyrr/auegkultnNc35XxfIJnlFceXllyJxHzs=; b=W8LkBQQ3KpOo6J/s7NNSTathJfnpE23/EnTmzkuVEo+dSvBYj62uI/Tqhyo/wbMAIK AGO1OUj1kOpD9Ij59u5GmuSWKeOClNJnpgCQxlOLLuXKQKnXSpLXKW8aDvOggykGO1n+ 71yOnGaM0K2CWqXR5UTaqdh5iYKXRpAXAA6DE= 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=lwKdnX1IOZglpMcqtfWxdDuocfdD40B7I5EumiLDJf81qG/JpxTdV6dgU3j+UjXha8 8bpQkRICk9EqrTizGshbLbIArdwP7w/9maEcHC/+Gu7wVPr9514fKejQQGJ7Fd5em3r0 f15FSfn91xtw5gKlAo6btbdhpmlBXeR/3cAz4= Received: by 10.223.103.8 with SMTP id i8mr4387202fao.47.1295884888466; Mon, 24 Jan 2011 08:01:28 -0800 (PST) Received: from htj.dyndns.org ([130.75.117.88]) by mx.google.com with ESMTPS id e17sm4611302fak.10.2011.01.24.08.01.27 (version=SSLv3 cipher=RC4-MD5); Mon, 24 Jan 2011 08:01:27 -0800 (PST) Date: Mon, 24 Jan 2011 17:01:25 +0100 From: Tejun Heo To: jgarzik@pobox.com Cc: linux-ide@vger.kernel.org, Francesco Antonacci Subject: [PATCH #upstream-fixes] libata: DVR-212D can't do SETXFER DVD-RW DVR-212D Message-ID: <20110124160125.GC27510@htj.dyndns.org> References: <4D3DA084.9070609@gmail.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4D3DA084.9070609@gmail.com> 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 to 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 --- Heh, that was formatted rather strangely. Here's properly reformatted version. 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 */ { }