diff options
author | Rui Miguel Silva <rui.silva@linaro.org> | 2022-06-29 11:06:14 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2022-07-12 21:59:54 +0200 |
commit | b2d2b7872249e6816487e95bd9197a9417aa62bb (patch) | |
tree | 8ff4d1d1bfad6aabf51c25a0df61f4ad99f2088f /drivers/usb/common/Makefile | |
parent | b252d79b0936d60b0c6c69e71b0233e58f9c961e (diff) | |
download | u-boot-b2d2b7872249e6816487e95bd9197a9417aa62bb.tar.gz |
usb: common: move urb code to common
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>
Diffstat (limited to 'drivers/usb/common/Makefile')
-rw-r--r-- | drivers/usb/common/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/usb/common/Makefile b/drivers/usb/common/Makefile index 3bedbf213f4..7eacc909f2d 100644 --- a/drivers/usb/common/Makefile +++ b/drivers/usb/common/Makefile @@ -4,5 +4,8 @@ # 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 |