mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-26 00:51:28 +02:00
Pull the functionality of UDC uclass that operates on plain udevice and does not use this dev_array array into separate functions and expose those functions, so that as much code as possible can be switched over to these functions and the dev_array can be dropped. Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com> Signed-off-by: Marek Vasut <marex@denx.de>
11 lines
232 B
Makefile
11 lines
232 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# USB peripheral controller drivers
|
|
|
|
ifndef CONFIG_$(SPL_)DM_USB_GADGET
|
|
obj-$(CONFIG_USB_DWC3_GADGET) += udc-core.o
|
|
endif
|
|
|
|
obj-$(CONFIG_$(SPL_)DM_USB_GADGET) += udc-core.o
|
|
obj-y += udc-uclass.o
|