mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
951fe829c7
In current renesas-usbhs, there was inconsistency about the style of kernel module or built-in. This patch solve it. [ balbi@ti.com : fix compile issue when building modules ] Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
16 lines
287 B
Makefile
16 lines
287 B
Makefile
#
|
|
# for Renesas USB
|
|
#
|
|
|
|
obj-$(CONFIG_USB_RENESAS_USBHS) += renesas_usbhs.o
|
|
|
|
renesas_usbhs-y := common.o mod.o pipe.o fifo.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
|