diff options
Diffstat (limited to 'board/teejet/mt_ventoux/mt_ventoux.c')
| -rw-r--r-- | board/teejet/mt_ventoux/mt_ventoux.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/teejet/mt_ventoux/mt_ventoux.c b/board/teejet/mt_ventoux/mt_ventoux.c index b8ad4471f..ecb9b6c41 100644 --- a/board/teejet/mt_ventoux/mt_ventoux.c +++ b/board/teejet/mt_ventoux/mt_ventoux.c @@ -110,12 +110,12 @@ static struct omap_usbhs_board_data usbhs_bdata = {  	.port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,  }; -int ehci_hcd_init(void) +int ehci_hcd_init(int index, struct ehci_hccr **hccr, struct ehci_hcor **hcor)  { -	return omap_ehci_hcd_init(&usbhs_bdata); +	return omap_ehci_hcd_init(&usbhs_bdata, hccr, hcor);  } -int ehci_hcd_stop(void) +int ehci_hcd_stop(int index)  {  	return omap_ehci_hcd_stop();  } |