mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Add RNDIS gadget support to test atmel usba udc driver Signed-off-by: Bo Shen <voice.shen@atmel.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			660 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			660 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * (C) Copyright 2007-2008
 | |
|  * Stelian Pop <stelian@popies.net>
 | |
|  * Lead Tech Design <www.leadtechdesign.com>
 | |
|  *
 | |
|  * SPDX-License-Identifier:	GPL-2.0+
 | |
|  */
 | |
| 
 | |
| #ifndef AT91_COMMON_H
 | |
| #define AT91_COMMON_H
 | |
| 
 | |
| void at91_can_hw_init(void);
 | |
| void at91_gmac_hw_init(void);
 | |
| void at91_macb_hw_init(void);
 | |
| void at91_mci_hw_init(void);
 | |
| void at91_serial0_hw_init(void);
 | |
| void at91_serial1_hw_init(void);
 | |
| void at91_serial2_hw_init(void);
 | |
| void at91_seriald_hw_init(void);
 | |
| void at91_spi0_hw_init(unsigned long cs_mask);
 | |
| void at91_spi1_hw_init(unsigned long cs_mask);
 | |
| void at91_udp_hw_init(void);
 | |
| void at91_uhp_hw_init(void);
 | |
| void at91_lcd_hw_init(void);
 | |
| 
 | |
| #endif /* AT91_COMMON_H */
 |