kmod-usb-net-asix: fix build on kernel 5.15

Fixes: #8584
This commit is contained in:
AmadeusGhost 2021-12-29 23:16:48 +08:00
parent cf8d67a3e3
commit af9ddeb7c9

View File

@ -1138,9 +1138,11 @@ $(eval $(call KernelPackage,usb-net-aqc111))
define KernelPackage/usb-net-asix
TITLE:=Kernel module for USB-to-Ethernet Asix convertors
DEPENDS:=+kmod-libphy
DEPENDS:=+kmod-libphy +LINUX_5_15:kmod-mdio-devres
KCONFIG:=CONFIG_USB_NET_AX8817X
FILES:=$(LINUX_DIR)/drivers/$(USBNET_DIR)/asix.ko
FILES:= \
$(LINUX_DIR)/drivers/$(USBNET_DIR)/asix.ko \
$(LINUX_DIR)/net/core/selftests.ko
AUTOLOAD:=$(call AutoProbe,asix)
$(call AddDepends/usb-net)
endef