1
0
Fork 0
forked from mirror/openwrt

airoha: rename kmod-pwm-an7581 to kmod-pwm-airoha

Certain targets for an7581 and an7583 referred to kmod-pwm-airoha;
however in the target modules makefile the module is referred to
as kmod-pwm-an7581, causing buildbot to fail.

Change the name of kmod-pwm-an7581 to kmod-pwm-airoha to resolve this.

Signed-off-by: Kenneth Kasilag <kenneth@kasilag.me>
Link: https://github.com/openwrt/openwrt/pull/22445
Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Kenneth Kasilag 2026-03-16 09:25:53 +00:00 committed by Robert Marko
parent 598c4b7fde
commit 7d2c244646

View file

@ -20,10 +20,10 @@ endef
$(eval $(call KernelPackage,i2c-an7581))
define KernelPackage/pwm-an7581
define KernelPackage/pwm-airoha
SUBMENU:=$(OTHER_MENU)
TITLE:=Airoha EN7581 PWM
DEPENDS:=@(TARGET_airoha_an7581)
TITLE:=Airoha AN7581 and AN7583 PWM
DEPENDS:=@TARGET_airoha_an7581||TARGET_airoha_an7583
KCONFIG:= \
CONFIG_PWM=y \
CONFIG_PWM_AIROHA=y \
@ -33,10 +33,10 @@ define KernelPackage/pwm-an7581
AUTOLOAD:=$(call AutoProbe,pwm-airoha)
endef
define KernelPackage/pwm-an7581/description
define KernelPackage/pwm-airoha/description
Kernel module to use the PWM channel on Airoha SoC
endef
$(eval $(call KernelPackage,pwm-an7581))
$(eval $(call KernelPackage,pwm-airoha))