mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
8ecef00fe1
In preparation for DT conversion to reduce reliance on platform device callbacks. Signed-off-by: Ulrich Hecht <ulrich.hecht+renesas@gmail.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
16 lines
295 B
Makefile
16 lines
295 B
Makefile
#
|
|
# for Renesas USB
|
|
#
|
|
|
|
obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o
|
|
|
|
renesas_usbhs-y := common.o mod.o pipe.o fifo.o rcar2.o
|
|
|
|
ifneq ($(CONFIG_USB_RENESAS_USBHS_HCD),)
|
|
renesas_usbhs-y += mod_host.o
|
|
endif
|
|
|
|
ifneq ($(CONFIG_USB_RENESAS_USBHS_UDC),)
|
|
renesas_usbhs-y += mod_gadget.o
|
|
endif
|