Date: Wed, 28 Jan 2015 19:53:00 +0000 (UTC) From: Hans Petter Selasky <hselasky@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r277848 - stable/9/lib/libusb Message-ID: <201501281953.t0SJr0cq020781@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: hselasky Date: Wed Jan 28 19:53:00 2015 New Revision: 277848 URL: https://svnweb.freebsd.org/changeset/base/277848 Log: MFC r277245: Add more USB request definitions. The values are described in section 9.4.11 and 9.4.12 of the "Universal Serial Bus 3.0 Specification" Modified: stable/9/lib/libusb/libusb.h stable/9/lib/libusb/libusb20_desc.h Directory Properties: stable/9/lib/ (props changed) stable/9/lib/libusb/ (props changed) Modified: stable/9/lib/libusb/libusb.h ============================================================================== --- stable/9/lib/libusb/libusb.h Wed Jan 28 19:49:53 2015 (r277847) +++ stable/9/lib/libusb/libusb.h Wed Jan 28 19:53:00 2015 (r277848) @@ -125,6 +125,8 @@ enum libusb_standard_request { LIBUSB_REQUEST_GET_INTERFACE = 0x0A, LIBUSB_REQUEST_SET_INTERFACE = 0x0B, LIBUSB_REQUEST_SYNCH_FRAME = 0x0C, + LIBUSB_REQUEST_SET_SEL = 0x30, + LIBUSB_REQUEST_SET_ISOCH_DELAY = 0x31, }; enum libusb_request_type { Modified: stable/9/lib/libusb/libusb20_desc.h ============================================================================== --- stable/9/lib/libusb/libusb20_desc.h Wed Jan 28 19:49:53 2015 (r277847) +++ stable/9/lib/libusb/libusb20_desc.h Wed Jan 28 19:53:00 2015 (r277848) @@ -477,6 +477,12 @@ enum libusb20_standard_request { /** Set then report an endpoint's synchronization frame */ LIBUSB20_REQUEST_SYNCH_FRAME = 0x0C, + + /** Set U1 and U2 system exit latency */ + LIBUSB20_REQUEST_SET_SEL = 0x30, + + /** Set isochronous delay */ + LIBUSB20_REQUEST_SET_ISOCH_DELAY = 0x31, }; /** \ingroup misc
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501281953.t0SJr0cq020781>