'\" t .\" Title: struct usb_ep_caps .\" Author: .\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: July 2017 .\" Manual: Kernel Mode Gadget API .\" Source: Kernel Hackers Manual 4.11.6 .\" Language: English .\" .TH "STRUCT USB_EP_CAPS" "9" "July 2017" "Kernel Hackers Manual 4\&.11\&" "Kernel Mode Gadget API" .\" ----------------------------------------------------------------- .\" * Define some portability stuff .\" ----------------------------------------------------------------- .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .\" http://bugs.debian.org/507673 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" ----------------------------------------------------------------- .\" * set default formatting .\" ----------------------------------------------------------------- .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) .ad l .\" ----------------------------------------------------------------- .\" * MAIN CONTENT STARTS HERE * .\" ----------------------------------------------------------------- .SH "NAME" struct_usb_ep_caps \- endpoint capabilities description .SH "SYNOPSIS" .sp .nf struct usb_ep_caps { unsigned type_control:1; unsigned type_iso:1; unsigned type_bulk:1; unsigned type_int:1; unsigned dir_in:1; unsigned dir_out:1; }; .fi .SH "MEMBERS" .PP unsigned:1 type_control .RS 4 Endpoint supports control type (reserved for ep0)\&. .RE .PP unsigned:1 type_iso .RS 4 Endpoint supports isochronous transfers\&. .RE .PP unsigned:1 type_bulk .RS 4 Endpoint supports bulk transfers\&. .RE .PP unsigned:1 type_int .RS 4 Endpoint supports interrupt transfers\&. .RE .PP unsigned:1 dir_in .RS 4 Endpoint supports IN direction\&. .RE .PP unsigned:1 dir_out .RS 4 Endpoint supports OUT direction\&. .RE .SH "AUTHOR" .PP \fBDavid Brownell\fR <\&dbrownell@users.sourceforge.net\&> .RS 4 Author. .RE .SH "COPYRIGHT" .br