usb_ep_disable

Langue: en

Version: October 2010 (fedora - 01/12/10)

Section: 9 (Appels noyau Linux)

NAME

usb_ep_disable - endpoint is no longer usable

SYNOPSIS

int usb_ep_disable(struct usb_ep * ep);

ARGUMENTS

ep

the endpoint being unconfigured. may not be the endpoint named lqep0rq.

DESCRIPTION

no other task may be using this endpoint when this is called. any pending and uncompleted requests will complete with status indicating disconnect (-ESHUTDOWN) before this call returns. gadget drivers must call usb_ep_enable again before queueing requests to the endpoint.

returns zero, or a negative error code.

AUTHOR

David Brownell <dbrownell@users.sourceforge.net>

Author.