wifi: iwlwifi: mvm: fix warnings from dmi_get_system_info()
authorJohannes Berg <johannes.berg@intel.com>
Sun, 4 Feb 2024 09:56:27 +0000 (10:56 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Sun, 4 Feb 2024 09:58:54 +0000 (10:58 +0100)
dmi_get_system_info() will statically return NULL when the
kernel is compiled without CONFIG_DMI, leading to compiler
warnings. Fix that by printing "<unknown>" in that case.

Fixes: c3f40c3e0273 ("iwlwifi: mvm: add US/CA to TAS block list if OEM isn't allowed")
Fixes: 9457077df49e ("wifi: iwlwifi: mvm: Add debugfs to get TAS status")
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c
drivers/net/wireless/intel/iwlwifi/mvm/fw.c

index 1ba3a559c1d62cdca43c1f47856e2378533e3f2e..79f4ac8cbc729e9a6caaf393080fe99a4320892e 100644 (file)
@@ -880,7 +880,7 @@ static ssize_t iwl_dbgfs_tas_get_status_read(struct file *file,
                                 le16_to_cpu(rsp->block_list[i]));
 
        pos += scnprintf(pos, endpos - pos, "\nOEM name: %s\n",
-                        dmi_get_system_info(DMI_SYS_VENDOR));
+                        dmi_get_system_info(DMI_SYS_VENDOR) ?: "<unknown>");
        pos += scnprintf(pos, endpos - pos, "\tVendor In Approved List: %s\n",
                         iwl_is_tas_approved() ? "YES" : "NO");
        pos += scnprintf(pos, endpos - pos,
index 738e90a4fe2f4ec55087030d2ad1215578316699..b596a1a837508867d17509b29a3d7f4cad77456f 100644 (file)
@@ -1159,7 +1159,7 @@ static void iwl_mvm_tas_init(struct iwl_mvm *mvm)
        if (!iwl_is_tas_approved()) {
                IWL_DEBUG_RADIO(mvm,
                                "System vendor '%s' is not in the approved list, disabling TAS in US and Canada.\n",
-                               dmi_get_system_info(DMI_SYS_VENDOR));
+                               dmi_get_system_info(DMI_SYS_VENDOR) ?: "<unknown>");
                if ((!iwl_mvm_add_to_tas_block_list(data.block_list_array,
                                                    &data.block_list_size,
                                                    IWL_MCC_US)) ||
@@ -1173,7 +1173,7 @@ static void iwl_mvm_tas_init(struct iwl_mvm *mvm)
        } else {
                IWL_DEBUG_RADIO(mvm,
                                "System vendor '%s' is in the approved list.\n",
-                               dmi_get_system_info(DMI_SYS_VENDOR));
+                               dmi_get_system_info(DMI_SYS_VENDOR) ?: "<unknown>");
        }
 
        fw_ver = iwl_fw_lookup_cmd_ver(mvm->fw, cmd_id,