gemini: usb-fotg210: add missing module name to AutoLoad

AutoLoad expects the module name to be present after the load index.

Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Robert Marko 2023-11-08 13:23:09 +01:00 committed by Christian Marangi
parent 67c6be5d3b
commit 7e87e2f83d
No known key found for this signature in database
GPG Key ID: AC001D09ADBFEAD7

View File

@ -6,7 +6,7 @@ define KernelPackage/usb-fotg210
CONFIG_USB_FOTG210_HCD=y \
CONFIG_USB_FOTG210_UDC=y
FILES:=$(LINUX_DIR)/drivers/usb/fotg210/fotg210.ko
AUTOLOAD:=$(call AutoLoad,50,1)
AUTOLOAD:=$(call AutoLoad,50,fotg210,1)
$(call AddDepends/usb)
endef