kernel: modules: mux-mmio: add missing regmap-mmio dependency

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: ac39016898 ("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>
This commit is contained in:
Rosen Penev 2026-07-01 20:01:40 -07:00 committed by Jonas Jelonek
parent 9fedddbc1e
commit 4e1fd5b025
No known key found for this signature in database

View 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)