EHCI: Rename asynch_setup to ioc_async_setup

This commit is contained in:
Ilya Averyanov 2015-09-07 13:36:52 -06:00 committed by Gregory Nutt
parent f3af146d44
commit 6799bba3c1
2 changed files with 8 additions and 8 deletions

View File

@ -500,7 +500,7 @@ static int lpc31_intr_setup(struct lpc31_rhport_s *rhport,
#endif
static ssize_t lpc31_transfer_wait(struct lpc31_epinfo_s *epinfo);
#ifdef CONFIG_USBHOST_ASYNCH
static inline int lpc31_asynch_setup(struct lpc31_rhport_s *rhport,
static inline int lpc31_ioc_async_setup(struct lpc31_rhport_s *rhport,
struct lpc31_epinfo_s *epinfo, usbhost_asynch_t callback,
FAR void *arg);
static void lpc31_asynch_completion(struct lpc31_epinfo_s *epinfo);
@ -2554,7 +2554,7 @@ static ssize_t lpc31_transfer_wait(struct lpc31_epinfo_s *epinfo)
}
/*******************************************************************************
* Name: lpc31_asynch_setup
* Name: lpc31_ioc_async_setup
*
* Description:
* Setup to receive an asynchronous notification when a transfer completes.
@ -2574,7 +2574,7 @@ static ssize_t lpc31_transfer_wait(struct lpc31_epinfo_s *epinfo)
*******************************************************************************/
#ifdef CONFIG_USBHOST_ASYNCH
static inline int lpc31_asynch_setup(struct lpc31_rhport_s *rhport,
static inline int lpc31_ioc_async_setup(struct lpc31_rhport_s *rhport,
struct lpc31_epinfo_s *epinfo,
usbhost_asynch_t callback, FAR void *arg)
{
@ -4418,7 +4418,7 @@ static int lpc31_asynch(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep,
/* Set the request for the callback well BEFORE initiating the transfer. */
ret = lpc31_asynch_setup(rhport, epinfo, callback, arg);
ret = lpc31_ioc_async_setup(rhport, epinfo, callback, arg);
if (ret != OK)
{
usbhost_trace1(EHCI_TRACE1_DEVDISCONNECTED, -ret);

View File

@ -376,7 +376,7 @@ static int sam_intr_setup(struct sam_rhport_s *rhport,
#endif
static ssize_t sam_transfer_wait(struct sam_epinfo_s *epinfo);
#ifdef CONFIG_USBHOST_ASYNCH
static inline int sam_asynch_setup(struct sam_rhport_s *rhport,
static inline int sam_ioc_async_setup(struct sam_rhport_s *rhport,
struct sam_epinfo_s *epinfo, usbhost_asynch_t callback,
FAR void *arg);
static void sam_asynch_completion(struct sam_epinfo_s *epinfo);
@ -2370,7 +2370,7 @@ static ssize_t sam_transfer_wait(struct sam_epinfo_s *epinfo)
}
/*******************************************************************************
* Name: sam_asynch_setup
* Name: sam_ioc_async_setup
*
* Description:
* Setup to receive an asynchronous notification when a transfer completes.
@ -2390,7 +2390,7 @@ static ssize_t sam_transfer_wait(struct sam_epinfo_s *epinfo)
*******************************************************************************/
#ifdef CONFIG_USBHOST_ASYNCH
static inline int sam_asynch_setup(struct sam_rhport_s *rhport,
static inline int sam_ioc_async_setup(struct sam_rhport_s *rhport,
struct sam_epinfo_s *epinfo,
usbhost_asynch_t callback, FAR void *arg)
{
@ -4239,7 +4239,7 @@ static int sam_asynch(FAR struct usbhost_driver_s *drvr, usbhost_ep_t ep,
/* Set the request for the callback well BEFORE initiating the transfer. */
ret = sam_asynch_setup(rhport, epinfo, callback, arg);
ret = sam_ioc_async_setup(rhport, epinfo, callback, arg);
if (ret != OK)
{
usbhost_trace1(EHCI_TRACE1_DEVDISCONNECTED, -ret);