From owner-freebsd-usb@FreeBSD.ORG Mon Aug 24 12:00:10 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A8EA610656DB for ; Mon, 24 Aug 2009 12:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 948828FC23 for ; Mon, 24 Aug 2009 12:00:10 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7OC0An5004891 for ; Mon, 24 Aug 2009 12:00:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7OC0A3I004890; Mon, 24 Aug 2009 12:00:10 GMT (envelope-from gnats) Date: Mon, 24 Aug 2009 12:00:10 GMT Message-Id: <200908241200.n7OC0A3I004890@freefall.freebsd.org> To: freebsd-usb@FreeBSD.org From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= Cc: Subject: Re: usb/127980: [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x and 8.x X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ulrich =?utf-8?B?U3DDtnJsZWlu?= List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Aug 2009 12:00:10 -0000 The following reply was made to PR usb/127980; it has been noted by GNATS. From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: bug-followup@FreeBSD.org Cc: Harald Schmalzbauer Subject: Re: usb/127980: [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x and 8.x Date: Mon, 24 Aug 2009 13:54:40 +0200 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline New patch against the new USB stack. The problem is still valid, the quirk is only required on 6.x and is harmful on 7.x. Others have reported this problem, too. Please remove this quirk from head and RELENG_8 and RELENG_7, thanks! Uli --ZGiS0Q5IWpPtfppv Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="samsung.diff" Index: sys/dev/usb/storage/umass.c =================================================================== --- sys/dev/usb/storage/umass.c (revision 196425) +++ sys/dev/usb/storage/umass.c (working copy) @@ -741,10 +741,6 @@ UMASS_PROTO_SCSI | UMASS_PROTO_BBB, IGNORE_RESIDUE | NO_START_STOP }, - {USB_VENDOR_SAMSUNG, USB_PRODUCT_SAMSUNG_YP_U2, RID_WILDCARD, - UMASS_PROTO_SCSI | UMASS_PROTO_BBB, - SHUTTLE_INIT | NO_GETMAXLUN - }, {USB_VENDOR_SAMSUNG_TECHWIN, USB_PRODUCT_SAMSUNG_TECHWIN_DIGIMAX_410, RID_WILDCARD, UMASS_PROTO_SCSI | UMASS_PROTO_BBB, NO_INQUIRY Index: sys/dev/usb/usbdevs =================================================================== --- sys/dev/usb/usbdevs (revision 196425) +++ sys/dev/usb/usbdevs (working copy) @@ -2108,7 +2108,6 @@ /* Samsung products */ product SAMSUNG ML6060 0x3008 ML-6060 laser printer -product SAMSUNG YP_U2 0x5050 YP-U2 MP3 Player product SAMSUNG I500 0x6601 I500 Palm USB Phone /* Samsung Techwin products */ --ZGiS0Q5IWpPtfppv--