mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
b3c518a882
Fixes commit 0131162439
("dm: usb: create a new UCLASS ID for USB gadget
devices")
The UCLASS_DRIVER for id UCLASS_USB_GADGET_GENERIC needs to be declared
even for platforms that do not enable DM_USB_GADGET. Otherwise the driver
for their usb peripheral controller fails to bind.
Reported-by: Priit Laes <plaes@plaes.org>
Reported-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Tested-by: Priit Laes <plaes@plaes.org>
Acked-by: Jagan Teki <jagan@openedev.com>
10 lines
250 B
Makefile
10 lines
250 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-$(CONFIG_$(SPL_)DM) += udc-uclass.o
|