summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2025-10-19 11:45:08 +0300
committerMiri Korenblit <miriam.rachel.korenblit@intel.com>2025-10-28 16:17:26 +0200
commitf67cf9aaae4681692dce78ce31ba08cdf9cc0705 (patch)
tree14ca7f89c629845d44c8392668b6d281e08deb58
parent7906c61a8faf6660bc2d5c6e71985be695a71065 (diff)
wifi: iwlwifi: fix build when mvm/mld not configured
When neither mvm nor mld are configured, we don't have the iwl_bz_mac_cfg symbol and thus cannot check for it. But in that case the relevant device entries aren't and cannot be present, so just ifdef the test code for that. Reported-by: kernel test robot <lkp@intel.com> Closes: https://lore.kernel.org/oe-kbuild-all/202509170625.BAJBe7Bi-lkp@intel.com/ Signed-off-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20251019114304.615810979e7b.I9a215f955bb3208d99239be8496d19e0f186b4d0@changeid
-rw-r--r--drivers/net/wireless/intel/iwlwifi/tests/devinfo.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/tests/devinfo.c b/drivers/net/wireless/intel/iwlwifi/tests/devinfo.c
index 3054bc0a9c67..6bf2ad18b009 100644
--- a/drivers/net/wireless/intel/iwlwifi/tests/devinfo.c
+++ b/drivers/net/wireless/intel/iwlwifi/tests/devinfo.c
@@ -274,6 +274,7 @@ static void devinfo_pci_ids_config(struct kunit *test)
if (s->device == PCI_ANY_ID || s->subdevice == PCI_ANY_ID)
continue;
+#if IS_ENABLED(CONFIG_IWLMVM) || IS_ENABLED(CONFIG_IWLMLD)
/*
* The check below only works for old (pre-CNVI) devices. Most
* new have subdevice==ANY, so are already skipped, but for some
@@ -281,6 +282,7 @@ static void devinfo_pci_ids_config(struct kunit *test)
*/
if (s->driver_data == (kernel_ulong_t)&iwl_bz_mac_cfg)
continue;
+#endif
di = iwl_pci_find_dev_info(s->device, s->subdevice,
0, 0, 0, 0, true);