diff --git a/arch/arm/src/stm32/stm32_otgfshost.c b/arch/arm/src/stm32/stm32_otgfshost.c index 75283107e30..57161088a75 100644 --- a/arch/arm/src/stm32/stm32_otgfshost.c +++ b/arch/arm/src/stm32/stm32_otgfshost.c @@ -314,7 +314,8 @@ static void stm32_disconnect(FAR struct usbhost_driver_s *drvr); /* Initialization **************************************************************/ -static inline void stm32_ep0init(struct stm32_usbhost_s *priv); +static inline void stm32_ep0init(FAR struct stm32_usbhost_s *priv); +static inline int stm32_hcdinitialize(FAR struct stm32_usbhost_s *priv); /******************************************************************************* * Private Data @@ -2434,6 +2435,25 @@ static inline void stm32_ep0init(struct stm32_usbhost_s *priv) stm32_putreg(regval, STM32_USBHOST_CTRL); } +/******************************************************************************* + * Name: stm32_hcdinitialize + * + * Description: + * Setup the host controller harware for normal operations. + * + * Input Parameters: + * priv -- USB host driver private data structure. + * + * Returned Value: + * Zero on success; a negated errno value on failure. + * + *******************************************************************************/ + +static inline int stm32_hcdinitialize(FAR struct stm32_usbhost_s *priv) +{ +#warning "Missing Logic" +} + /******************************************************************************* * Public Functions *******************************************************************************/