Commit 6d721b29 authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Greg Kroah-Hartman

usb: renesas_usbhs: use dma handler

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 4ce68805
...@@ -474,9 +474,9 @@ static int usbhsg_ep_enable(struct usb_ep *ep, ...@@ -474,9 +474,9 @@ static int usbhsg_ep_enable(struct usb_ep *ep,
pipe->mod_private = uep; pipe->mod_private = uep;
if (usb_endpoint_dir_in(desc)) if (usb_endpoint_dir_in(desc))
uep->handler = &usbhs_fifo_pio_push_handler; uep->handler = &usbhs_fifo_dma_push_handler;
else else
uep->handler = &usbhs_fifo_pio_pop_handler; uep->handler = &usbhs_fifo_dma_pop_handler;
ret = 0; ret = 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment