]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
kernel: modules: mux-mmio: add missing regmap-mmio dependency 24028/head
authorRosen Penev <rosenp@gmail.com>
Thu, 2 Jul 2026 03:01:40 +0000 (20:01 -0700)
committerJonas Jelonek <jelonek.jonas@gmail.com>
Thu, 2 Jul 2026 08:06:12 +0000 (10:06 +0200)
mux-mmio.ko depends on regmap-mmio.ko at runtime, but the kmod package
was missing the dependency, causing build failures when the module is
included.

Fixes: ac3901689881 ("kernel: modules: package MMIO mux driver")
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/24028
Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
package/kernel/linux/modules/multiplexer.mk

index cfd6797316a80af47e39688d49c67af7cae3b945..738acc853573ab92e58df54ad016206a347e6443 100644 (file)
@@ -36,7 +36,7 @@ $(eval $(call KernelPackage,mux-gpio))
 define KernelPackage/mux-mmio
   SUBMENU:=$(OTHER_MENU)
   TITLE:=MMIO/Regmap register bitfield-controlled Multiplexer controller
-  DEPENDS:=+kmod-mux-core
+  DEPENDS:=+kmod-mux-core +kmod-regmap-mmio
   KCONFIG:=CONFIG_MUX_MMIO
   FILES:=$(LINUX_DIR)/drivers/mux/mux-mmio.ko
   AUTOLOAD:=$(call AutoProbe,mux-mmio)