fsl_usb2_udc: Uninline udc_reset_ep_queue.

Uninline udc_reset_ep_queue and remove it's unused return value.

Signed-off-by: Will Newton <will.newton@gmail.com>
Acked-by: Li Yang <leoli@freescale.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Will Newton 2008-08-12 15:39:14 +01:00 committed by Greg Kroah-Hartman
parent c93eebbe75
commit 825bee3a33

View file

@ -1165,16 +1165,12 @@ static int ep0_prime_status(struct fsl_udc *udc, int direction)
return status; return status;
} }
static inline int udc_reset_ep_queue(struct fsl_udc *udc, u8 pipe) static void udc_reset_ep_queue(struct fsl_udc *udc, u8 pipe)
{ {
struct fsl_ep *ep = get_ep_by_pipe(udc, pipe); struct fsl_ep *ep = get_ep_by_pipe(udc, pipe);
if (!ep->name) if (ep->name)
return 0;
nuke(ep, -ESHUTDOWN); nuke(ep, -ESHUTDOWN);
return 0;
} }
/* /*