arch/arm/src/stm32/stm32_otgfsdev.c/stm32_otghsdev, stm32f7/stm32_otgdev.c, and stm32l4/stm32l4_otgfsdev.c: Fix a warnings due to a function prototype mismatch.
This commit is contained in:
parent
28115504ec
commit
e29e02529d
@ -653,7 +653,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep,
|
|||||||
/* Endpoint buffer management */
|
/* Endpoint buffer management */
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes);
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uin16_t bytes);
|
||||||
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep, FAR void *buf);
|
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep, FAR void *buf);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -4335,7 +4335,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep, FAR struct usbdev_req_s
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes)
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uint16_t bytes)
|
||||||
{
|
{
|
||||||
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32_ep_s *)ep)->epphy);
|
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32_ep_s *)ep)->epphy);
|
||||||
|
|
||||||
|
@ -605,7 +605,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep,
|
|||||||
/* Endpoint buffer management */
|
/* Endpoint buffer management */
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes);
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uint16_t bytes);
|
||||||
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep, FAR void *buf);
|
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep, FAR void *buf);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -4284,7 +4284,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep, FAR struct usbdev_req_s
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes)
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uint16_t bytes)
|
||||||
{
|
{
|
||||||
usbtrace(TRACE_EPALLOCBUFFER, privep->epphy);
|
usbtrace(TRACE_EPALLOCBUFFER, privep->epphy);
|
||||||
|
|
||||||
|
@ -684,7 +684,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep,
|
|||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep,
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep,
|
||||||
unsigned bytes);
|
uint16_t bytes);
|
||||||
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep,
|
static void stm32_ep_freebuffer(FAR struct usbdev_ep_s *ep,
|
||||||
FAR void *buf);
|
FAR void *buf);
|
||||||
#endif
|
#endif
|
||||||
@ -4356,7 +4356,7 @@ static void stm32_ep_freereq(FAR struct usbdev_ep_s *ep, FAR struct usbdev_req_s
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes)
|
static void *stm32_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uint16_t bytes)
|
||||||
{
|
{
|
||||||
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32_ep_s *)ep)->epphy);
|
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32_ep_s *)ep)->epphy);
|
||||||
|
|
||||||
|
@ -712,7 +712,7 @@ static void stm32l4_ep_freereq(FAR struct usbdev_ep_s *ep,
|
|||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32l4_ep_allocbuffer(FAR struct usbdev_ep_s *ep,
|
static void *stm32l4_ep_allocbuffer(FAR struct usbdev_ep_s *ep,
|
||||||
unsigned bytes);
|
uint16_t bytes);
|
||||||
static void stm32l4_ep_freebuffer(FAR struct usbdev_ep_s *ep,
|
static void stm32l4_ep_freebuffer(FAR struct usbdev_ep_s *ep,
|
||||||
FAR void *buf);
|
FAR void *buf);
|
||||||
#endif
|
#endif
|
||||||
@ -4406,7 +4406,7 @@ static void stm32l4_ep_freereq(FAR struct usbdev_ep_s *ep, FAR struct usbdev_req
|
|||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_USBDEV_DMA
|
#ifdef CONFIG_USBDEV_DMA
|
||||||
static void *stm32l4_ep_allocbuffer(FAR struct usbdev_ep_s *ep, unsigned bytes)
|
static void *stm32l4_ep_allocbuffer(FAR struct usbdev_ep_s *ep, uint16_t bytes)
|
||||||
{
|
{
|
||||||
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32l4_ep_s *)ep)->epphy);
|
usbtrace(TRACE_EPALLOCBUFFER, ((FAR struct stm32l4_ep_s *)ep)->epphy);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user