From: Tom Rini Date: Sat, 11 Feb 2023 14:25:44 +0000 (-0500) Subject: usb: gadget: Fix typo in obj line X-Git-Tag: baikal/mips/sdk5.8.2~5^2~50 X-Git-Url: https://git.baikalelectronics.ru/?a=commitdiff_plain;h=141e4ae2d59e5b8a353810609ce331f632bdea3c;p=uboot.git usb: gadget: Fix typo in obj line When dropping the unused fotg210 gadget driver a leading 0 was introduced to the next line, drop it. Fixes: 80c2c1f9e6de ("usb: Drop unused fotg210 gadget") Reported-by: Samuel Holland Signed-off-by: Tom Rini --- diff --git a/drivers/usb/gadget/Makefile b/drivers/usb/gadget/Makefile index b04b6bcd77..6cfe0f3a04 100644 --- a/drivers/usb/gadget/Makefile +++ b/drivers/usb/gadget/Makefile @@ -19,7 +19,7 @@ obj-$(CONFIG_USB_GADGET_ATMEL_USBA) += atmel_usba_udc.o obj-$(CONFIG_USB_GADGET_BCM_UDC_OTG_PHY) += bcm_udc_otg_phy.o obj-$(CONFIG_USB_GADGET_DWC2_OTG) += dwc2_udc_otg.o obj-$(CONFIG_USB_GADGET_DWC2_OTG_PHY) += dwc2_udc_otg_phy.o -0obj-$(CONFIG_USB_GADGET_MAX3420) += max3420_udc.o +obj-$(CONFIG_USB_GADGET_MAX3420) += max3420_udc.o ifndef CONFIG_SPL_BUILD obj-$(CONFIG_USB_GADGET_DOWNLOAD) += g_dnl.o obj-$(CONFIG_USB_FUNCTION_THOR) += f_thor.o