ed3391fd23
Change-Id: Ia3c50a8c5e11bf20100354de266913112cc236f9 http://gerrit.minix3.org/#/c/2689/
20 lines
563 B
C
Executable file
20 lines
563 B
C
Executable file
/*
|
|
* Externally visible interface for possible USB controllers
|
|
*/
|
|
|
|
#ifndef _HCD_PLATFORMS_H_
|
|
#define _HCD_PLATFORMS_H_
|
|
|
|
|
|
/*===========================================================================*
|
|
* MUSB *
|
|
*===========================================================================*/
|
|
/* ----- AM335X ----- */
|
|
int musb_am335x_init(void);
|
|
void musb_am335x_deinit(void);
|
|
/* ----- AM/DM37X ----- */
|
|
int musb_dm37x_init(void);
|
|
void musb_dm37x_deinit(void);
|
|
|
|
|
|
#endif /* !_HCD_PLATFORMS_H_ */
|