mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
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:
parent
c93eebbe75
commit
825bee3a33
@ -1165,16 +1165,12 @@ static int ep0_prime_status(struct fsl_udc *udc, int direction)
|
||||
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);
|
||||
|
||||
if (!ep->name)
|
||||
return 0;
|
||||
|
||||
nuke(ep, -ESHUTDOWN);
|
||||
|
||||
return 0;
|
||||
if (ep->name)
|
||||
nuke(ep, -ESHUTDOWN);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user