[openwrt/openwrt] kernel: qlcnic: add dependency to kmod-hwmon-core
LEDE Commits
lede-commits at lists.infradead.org
Sat May 1 11:02:24 BST 2021
hauke pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/95b210e513d6d369444df41b522f749f1d848048
commit 95b210e513d6d369444df41b522f749f1d848048
Author: Hauke Mehrtens <hauke at hauke-m.de>
AuthorDate: Sat May 1 11:58:47 2021 +0200
kernel: qlcnic: add dependency to kmod-hwmon-core
QLCNIC_HWMON was activated when hwmon was set, but the dependency was
missing. This broke the build bot builds. Fix this by explicitly
activating HWMON support and adding a dependency.
Fixes: f88c64d28ccf ("kernel: netdev: add qlcnic")
Signed-off-by: Hauke Mehrtens <hauke at hauke-m.de>
---
package/kernel/linux/modules/netdevices.mk | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/package/kernel/linux/modules/netdevices.mk b/package/kernel/linux/modules/netdevices.mk
index 5308442003..8025fd2a95 100644
--- a/package/kernel/linux/modules/netdevices.mk
+++ b/package/kernel/linux/modules/netdevices.mk
@@ -1195,9 +1195,11 @@ $(eval $(call KernelPackage,mlx5-core))
define KernelPackage/qlcnic
SUBMENU:=$(NETWORK_DEVICES_MENU)
- DEPENDS:=@PCI_SUPPORT
+ DEPENDS:=@PCI_SUPPORT +kmod-hwmon-core
TITLE:=QLogic QLE8240 and QLE8242 device support
- KCONFIG:=CONFIG_QLCNIC
+ KCONFIG:= \
+ CONFIG_QLCNIC \
+ CONFIG_QLCNIC_HWMON=y
FILES:=$(LINUX_DIR)/drivers/net/ethernet/qlogic/qlcnic/qlcnic.ko
AUTOLOAD:=$(call AutoProbe,qlcnic)
endef
More information about the lede-commits
mailing list