Просмотр исходного кода

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 <[email protected]>
Robert Marko 2 лет назад
Родитель
Сommit
7e87e2f83d
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      target/linux/gemini/modules.mk

+ 1 - 1
target/linux/gemini/modules.mk

@@ -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