mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 14:06:03 +00:00 
			
		
		
		
	 8d855317fc
			
		
	
	
		8d855317fc
		
	
	
	
	
		
			
			The atmel_usba_udc driver is being used by several platforms and arches (avr32 and at91 ATM), and each platform may have different endpoint settings. The patch below moves the endpoint declarations into the platform data and make the necessary adjustments for AVR32 (improved by Haavard Skinnemoen <hskinnemoen@atmel.com>). Signed-off-by: Stelian Pop <stelian@popies.net> Acked-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
		
			
				
	
	
		
			23 lines
		
	
	
		
			356 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			356 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * 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			num_ep;
 | |
| 	struct usba_ep_data	ep[0];
 | |
| };
 | |
| 
 | |
| #endif /* __LINUX_USB_USBA_H */
 |