e8d548d549
Current renesas_usbhs has PIO data transfer mode which controls CFIFO. And it was implemented in pipe.c. But, fifo control method needs more flexible implementation to support DMAEngine. This patch create fifo.c, and it became independent from pipe.c. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
10 lines
188 B
Makefile
10 lines
188 B
Makefile
#
|
|
# for Renesas USB
|
|
#
|
|
|
|
obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o
|
|
|
|
renesas_usbhs-y := common.o mod.o pipe.o fifo.o
|
|
|
|
renesas_usbhs-$(CONFIG_USB_RENESAS_USBHS_UDC) += mod_gadget.o
|