mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
e09b88cd08
This patch adds support for the MediaTek USB3 DRD controller, its host side is based on xHCI, this driver supports device mode and host mode. Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> Acked-by: Bin Meng <bmeng.cn@gmail.com>
11 lines
302 B
Makefile
11 lines
302 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-$(CONFIG_USB_MTU3_DEBUG) += -DDEBUG
|
|
|
|
obj-$(CONFIG_USB_MTU3) += mtu3.o
|
|
|
|
mtu3-y := mtu3_plat.o
|
|
|
|
obj-$(CONFIG_USB_MTU3_GADGET) += mtu3_core.o mtu3_gadget_ep0.o mtu3_gadget.o
|
|
obj-$(CONFIG_USB_MTU3_GADGET) += mtu3_qmu.o
|
|
obj-$(CONFIG_USB_MTU3_HOST) += mtu3_host.o
|