Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

usb: renesas_usbhs: use dma handler

parent 4ce68805
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -474,9 +474,9 @@ static int usbhsg_ep_enable(struct usb_ep *ep,
		pipe->mod_private	= uep;

		if (usb_endpoint_dir_in(desc))
			uep->handler = &usbhs_fifo_pio_push_handler;
			uep->handler = &usbhs_fifo_dma_push_handler;
		else
			uep->handler = &usbhs_fifo_pio_pop_handler;
			uep->handler = &usbhs_fifo_dma_pop_handler;

		ret = 0;
	}