#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/device.h>
#include "g_zero.h"
#include "gadget_chips.h"
#include "f_sourcesink.c"
#include "f_loopback.c"
Go to the source code of this file.
|
| | USB_GADGET_COMPOSITE_OPTIONS () |
| |
| | module_param (buflen, uint, 0) |
| |
| | module_param (loopdefault, bool, S_IRUGO|S_IWUSR) |
| |
| | module_param (autoresume, uint, S_IRUGO) |
| |
| | MODULE_PARM_DESC (autoresume,"zero, or seconds before remote wakeup") |
| |
| struct usb_request * | alloc_ep_req (struct usb_ep *ep, int len) |
| |
| void | free_ep_req (struct usb_ep *ep, struct usb_request *req) |
| |
| void | disable_endpoints (struct usb_composite_dev *cdev, struct usb_ep *in, struct usb_ep *out, struct usb_ep *iso_in, struct usb_ep *iso_out) |
| |
| | MODULE_AUTHOR ("David Brownell") |
| |
| | MODULE_LICENSE ("GPL") |
| |
| | module_init (init) |
| |
| | module_exit (cleanup) |
| |
| #define DEFAULT_AUTORESUME 0 |
| #define DRIVER_PRODUCT_NUM 0xa4a0 /* Linux-USB "Gadget Zero" */ |
| #define DRIVER_VENDOR_NUM 0x0525 /* NetChip */ |
| #define DRIVER_VERSION "Cinco de Mayo 2008" |
| MODULE_AUTHOR |
( |
"David Brownell" |
| ) |
|
| USB_GADGET_COMPOSITE_OPTIONS |
( |
| ) |
|