mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-13 20:36:02 +01:00
Move urb code from musb only use to a more common scope, so other drivers in the future can use the handling of urb in usb. Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
12 lines
376 B
Makefile
12 lines
376 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# (C) Copyright 2016 Freescale Semiconductor, Inc.
|
|
#
|
|
|
|
obj-$(CONFIG_$(SPL_)DM_USB) += common.o
|
|
obj-$(CONFIG_USB_MUSB_HOST) += usb_urb.o
|
|
obj-$(CONFIG_USB_MUSB_GADGET) += usb_urb.o
|
|
obj-$(CONFIG_USB_R8A66597_HCD) += usb_urb.o
|
|
obj-$(CONFIG_USB_EHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
|
|
obj-$(CONFIG_USB_XHCI_FSL) += fsl-dt-fixup.o fsl-errata.o
|