Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 317ddd256b9c24b0d78fa8018f80f1e495481a10 authored by Linus Torvalds on 09 June 2013, 00:41:04 UTC
Linux 3.10-rc5
Tip revision: 317ddd2
atmel_usba_udc.h
/*
 * Platform data definitions for Atmel USBA gadget driver.
 */
#ifndef __LINUX_USB_USBA_H
#define __LINUX_USB_USBA_H

struct usba_ep_data {
	char	*name;
	int	index;
	int	fifo_size;
	int	nr_banks;
	int	can_dma;
	int	can_isoc;
};

struct usba_platform_data {
	int			vbus_pin;
	int			vbus_pin_inverted;
	int			num_ep;
	struct usba_ep_data	ep[0];
};

#endif /* __LINUX_USB_USBA_H */
back to top