blob: 41e45e99ee6b69a7983705db1ff70aff092aac16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
obj-$(CONFIG_USB_MTU3) += mtu3.o
mtu3-y := mtu3_plat.o
ifneq ($(filter y,$(CONFIG_USB_MTU3_HOST)),)
mtu3-y += mtu3_host.o
endif
ifneq ($(filter y,$(CONFIG_USB_MTU3_GADGET)),)
mtu3-y += mtu3_core.o mtu3_gadget_ep0.o mtu3_gadget.o mtu3_qmu.o
endif
|