From: Mathias Kresin Date: Mon, 16 Mar 2020 20:16:07 +0000 (+0100) Subject: kernel: kmod-serial-8250: fix linux 5.3 dependencies X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fstaging%2Fdedeckeh.git;a=commitdiff_plain;h=c01c01891c185d204de1aa8f3f7af1c05f78f09b kernel: kmod-serial-8250: fix linux 5.3 dependencies Beginning with linux 5.3, kmod-serial-8250 uses functions provided by serial_mctrl_gpio.ko if GPIO support is enabled. Signed-off-by: Mathias Kresin --- diff --git a/package/kernel/linux/modules/other.mk b/package/kernel/linux/modules/other.mk index 147ad99cd1..f1a70bf069 100644 --- a/package/kernel/linux/modules/other.mk +++ b/package/kernel/linux/modules/other.mk @@ -732,7 +732,8 @@ define KernelPackage/serial-8250 FILES:= \ $(LINUX_DIR)/drivers/tty/serial/8250/8250.ko \ $(LINUX_DIR)/drivers/tty/serial/8250/8250_base.ko \ - $(if $(CONFIG_PCI),$(LINUX_DIR)/drivers/tty/serial/8250/8250_pci.ko) + $(if $(CONFIG_PCI),$(LINUX_DIR)/drivers/tty/serial/8250/8250_pci.ko) \ + $(if $(CONFIG_GPIOLIB),$(LINUX_DIR)/drivers/tty/serial/serial_mctrl_gpio.ko@ge5.3) AUTOLOAD:=$(call AutoProbe,8250 8250_base 8250_pci) endef