From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-15.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id EE944C433E6 for ; Fri, 28 Aug 2020 07:30:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C04C020738 for ; Fri, 28 Aug 2020 07:30:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598599854; bh=v0xkZbotk0Cew3zzf0cOlKW5lfXb/kiAE4ApvQOhzvM=; h=Subject:To:From:Date:List-ID:From; b=OSiQisYbRO63ScUfpnYxhX43yPM1HDiBlgjnKzbAUtNBAnk6SigQ5d/ndNYwWeL0u 9pVCujQI4xV++L2lWi8C1O+q3pz3qU0j7z7hMaBXf1wkSGSbaTMZ1BJgOE+Ow4oLZ7 9gRZgG5zsW/D1XVnMRJfIxUY65/tURrGHYDXKk24= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726571AbgH1Hay (ORCPT ); Fri, 28 Aug 2020 03:30:54 -0400 Received: from mail.kernel.org ([198.145.29.99]:37568 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726500AbgH1Hax (ORCPT ); Fri, 28 Aug 2020 03:30:53 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8AA732071B; Fri, 28 Aug 2020 07:30:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1598599853; bh=v0xkZbotk0Cew3zzf0cOlKW5lfXb/kiAE4ApvQOhzvM=; h=Subject:To:From:Date:From; b=a7BnP0BrWHe03lSooCwmOcvA8y/YixzaqM21rUoccTdCEjZUkgRNiZl9a5Rd8Swfu BdFKkODt/SIMHP8sSQkEubufUIQfO8/54vPkZY6wpuIa/AqQSxGkL0hYqO79JrFOqn cR4toZgFD1r2GwdtJWORnFffQOIT2tu1tt4R79Kk= Subject: patch "usb: storage: Add unusual_uas entry for Sony PSZ drives" added to usb-linus To: stern@rowland.harvard.edu, doerges@pre-sense.de, gregkh@linuxfoundation.org, stable@vger.kernel.org From: Date: Fri, 28 Aug 2020 09:31:04 +0200 Message-ID: <1598599864179129@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org This is a note to let you know that I've just added the patch titled usb: storage: Add unusual_uas entry for Sony PSZ drives to my usb git tree which can be found at git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git in the usb-linus branch. The patch will show up in the next release of the linux-next tree (usually sometime within the next 24 hours during the week.) The patch will hopefully also be merged in Linus's tree for the next -rc kernel release. If you have any questions about this process, please let me know. >From 20934c0de13b49a072fb1e0ca79fe0fe0e40eae5 Mon Sep 17 00:00:00 2001 From: Alan Stern Date: Wed, 26 Aug 2020 10:32:29 -0400 Subject: usb: storage: Add unusual_uas entry for Sony PSZ drives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The PSZ-HA* family of USB disk drives from Sony can't handle the REPORT OPCODES command when using the UAS protocol. This patch adds an appropriate quirks entry. Reported-and-tested-by: Till Dörges Signed-off-by: Alan Stern CC: Link: https://lore.kernel.org/r/20200826143229.GB400430@rowland.harvard.edu Signed-off-by: Greg Kroah-Hartman --- drivers/usb/storage/unusual_uas.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/drivers/usb/storage/unusual_uas.h b/drivers/usb/storage/unusual_uas.h index 971f8a4354c8..711ab240058c 100644 --- a/drivers/usb/storage/unusual_uas.h +++ b/drivers/usb/storage/unusual_uas.h @@ -28,6 +28,13 @@ * and don't forget to CC: the USB development list */ +/* Reported-by: Till Dörges */ +UNUSUAL_DEV(0x054c, 0x087d, 0x0000, 0x9999, + "Sony", + "PSZ-HA*", + USB_SC_DEVICE, USB_PR_DEVICE, NULL, + US_FL_NO_REPORT_OPCODES), + /* Reported-by: Julian Groß */ UNUSUAL_DEV(0x059f, 0x105f, 0x0000, 0x9999, "LaCie", -- 2.28.0