svn commit: r187163 - in head/sys/dev: usb usb2/storage
Andrew Thompson
thompsa at FreeBSD.org
Tue Jan 13 11:01:26 PST 2009
Author: thompsa
Date: Tue Jan 13 19:01:25 2009
New Revision: 187163
URL: http://svn.freebsd.org/changeset/base/187163
Log:
MFp4: //depot/projects/usb at 155748
Umass module quirk from Alexander Best
to support Meizu Electronics MiniPlayer.
Submitted by: Hans Petter Selasky
Modified:
head/sys/dev/usb/usbdevs
head/sys/dev/usb2/storage/umass2.c
Modified: head/sys/dev/usb/usbdevs
==============================================================================
--- head/sys/dev/usb/usbdevs Tue Jan 13 19:01:14 2009 (r187162)
+++ head/sys/dev/usb/usbdevs Tue Jan 13 19:01:25 2009 (r187163)
@@ -151,6 +151,7 @@ vendor PLANTRONICS 0x047f Plantronics
vendor KYOCERA 0x0482 Kyocera Wireless Corp.
vendor STMICRO 0x0483 STMicroelectronics
vendor FOXCONN 0x0489 Foxconn
+vendor MEIZU 0x0492 Meizu Electronics
vendor YAMAHA 0x0499 YAMAHA
vendor COMPAQ 0x049f Compaq
vendor HITACHI 0x04a4 Hitachi
@@ -1657,6 +1658,9 @@ product MCT DU_H3SP_USB232 0x0200 D-Link
product MCT USB232 0x0210 USB-232 Interface
product MCT SITECOM_USB232 0x0230 Sitecom USB-232 Products
+/* Meizu Electronics */
+product MEIZU M6_SL 0x0140 MiniPlayer M6 (SL)
+
/* Melco, Inc products */
product MELCO LUATX1 0x0001 LUA-TX Ethernet
product MELCO LUATX5 0x0005 LUA-TX Ethernet
Modified: head/sys/dev/usb2/storage/umass2.c
==============================================================================
--- head/sys/dev/usb2/storage/umass2.c Tue Jan 13 19:01:14 2009 (r187162)
+++ head/sys/dev/usb2/storage/umass2.c Tue Jan 13 19:01:25 2009 (r187163)
@@ -916,6 +916,10 @@ static const struct umass_devdescr umass
UMASS_PROTO_ATAPI | UMASS_PROTO_CBI,
NO_QUIRKS
},
+ {USB_VENDOR_MEIZU, USB_PRODUCT_MEIZU_M6_SL, RID_WILDCARD,
+ UMASS_PROTO_SCSI | UMASS_PROTO_BBB,
+ NO_INQUIRY | NO_SYNCHRONIZE_CACHE
+ },
{VID_EOT, PID_EOT, RID_EOT, 0, 0}
};
More information about the svn-src-all
mailing list