iwlwifi: fix various more -Wcast-qual warnings
authorJohannes Berg <johannes.berg@intel.com>
Fri, 28 Jan 2022 13:34:28 +0000 (15:34 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Fri, 18 Feb 2022 08:40:50 +0000 (10:40 +0200)
When enabling W=3 that gets us -Wcast-qual, fix those warnings
in the code and propagate constness properly, or cast it away
via (uintptr_t) where really needed.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Link: https://lore.kernel.org/r/iwlwifi.20220128153014.4ac2f19c121e.Ied9469d93f8199206242bfba96e4e8d1949e3a08@changeid
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/fw/pnvm.c
drivers/net/wireless/intel/iwlwifi/fw/uefi.c
drivers/net/wireless/intel/iwlwifi/iwl-dbg-tlv.c
drivers/net/wireless/intel/iwlwifi/iwl-drv.c
drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c
drivers/net/wireless/intel/iwlwifi/mvm/d3.c

index 0177f9e..b6d3ac6 100644 (file)
@@ -181,7 +181,7 @@ static int iwl_pnvm_parse(struct iwl_trans *trans, const u8 *data,
                u32 tlv_len, tlv_type;
 
                len -= sizeof(*tlv);
-               tlv = (void *)data;
+               tlv = (const void *)data;
 
                tlv_len = le32_to_cpu(tlv->length);
                tlv_type = le32_to_cpu(tlv->type);
index bd82c24..23b1d68 100644 (file)
@@ -69,7 +69,7 @@ out:
 static void *iwl_uefi_reduce_power_section(struct iwl_trans *trans,
                                           const u8 *data, size_t len)
 {
-       struct iwl_ucode_tlv *tlv;
+       const struct iwl_ucode_tlv *tlv;
        u8 *reduce_power_data = NULL, *tmp;
        u32 size = 0;
 
@@ -79,7 +79,7 @@ static void *iwl_uefi_reduce_power_section(struct iwl_trans *trans,
                u32 tlv_len, tlv_type;
 
                len -= sizeof(*tlv);
-               tlv = (void *)data;
+               tlv = (const void *)data;
 
                tlv_len = le32_to_cpu(tlv->length);
                tlv_type = le32_to_cpu(tlv->type);
@@ -154,7 +154,7 @@ out:
 static void *iwl_uefi_reduce_power_parse(struct iwl_trans *trans,
                                         const u8 *data, size_t len)
 {
-       struct iwl_ucode_tlv *tlv;
+       const struct iwl_ucode_tlv *tlv;
        void *sec_data;
 
        IWL_DEBUG_FW(trans, "Parsing REDUCE_POWER data\n");
@@ -163,7 +163,7 @@ static void *iwl_uefi_reduce_power_parse(struct iwl_trans *trans,
                u32 tlv_len, tlv_type;
 
                len -= sizeof(*tlv);
-               tlv = (void *)data;
+               tlv = (const void *)data;
 
                tlv_len = le32_to_cpu(tlv->length);
                tlv_type = le32_to_cpu(tlv->type);
@@ -175,8 +175,8 @@ static void *iwl_uefi_reduce_power_parse(struct iwl_trans *trans,
                }
 
                if (tlv_type == IWL_UCODE_TLV_PNVM_SKU) {
-                       struct iwl_sku_id *sku_id =
-                               (void *)(data + sizeof(*tlv));
+                       const struct iwl_sku_id *sku_id =
+                               (const void *)(data + sizeof(*tlv));
 
                        IWL_DEBUG_FW(trans,
                                     "Got IWL_UCODE_TLV_PNVM_SKU len %d\n",
index fdb3f79..29a04bb 100644 (file)
@@ -271,7 +271,7 @@ static int iwl_dbg_tlv_alloc_trigger(struct iwl_trans *trans,
 static int iwl_dbg_tlv_config_set(struct iwl_trans *trans,
                                  const struct iwl_ucode_tlv *tlv)
 {
-       struct iwl_fw_ini_conf_set_tlv *conf_set = (void *)tlv->data;
+       const struct iwl_fw_ini_conf_set_tlv *conf_set = (const void *)tlv->data;
        u32 tp = le32_to_cpu(conf_set->time_point);
        u32 type = le32_to_cpu(conf_set->set_type);
 
index 04abfac..5a9e644 100644 (file)
@@ -601,7 +601,7 @@ static void iwl_parse_dbg_tlv_assert_tables(struct iwl_drv *drv,
                     sizeof(region->special_mem))
                return;
 
-       region = (void *)tlv->data;
+       region = (const void *)tlv->data;
        addr = le32_to_cpu(region->special_mem.base_addr);
        addr += le32_to_cpu(region->special_mem.offset);
        addr &= ~FW_ADDR_CACHE_CONTROL;
@@ -1279,7 +1279,7 @@ static int iwl_parse_tlv_firmware(struct iwl_drv *drv,
 
        if (len) {
                IWL_ERR(drv, "invalid TLV after parsing: %zd\n", len);
-               iwl_print_hex_dump(drv, IWL_DL_FW, (u8 *)data, len);
+               iwl_print_hex_dump(drv, IWL_DL_FW, data, len);
                return -EINVAL;
        }
 
index 7b2bbc6..3803847 100644 (file)
@@ -732,7 +732,7 @@ static void iwl_init_he_6ghz_capa(struct iwl_trans *trans,
        IWL_DEBUG_EEPROM(trans->dev, "he_6ghz_capa=0x%x\n", he_6ghz_capa);
 
        /* we know it's writable - we set it before ourselves */
-       iftype_data = (void *)sband->iftype_data;
+       iftype_data = (void *)(uintptr_t)sband->iftype_data;
        for (i = 0; i < sband->n_iftype_data; i++)
                iftype_data[i].he_6ghz_capa.capa = cpu_to_le16(he_6ghz_capa);
 }
index a46365a..b1dffcd 100644 (file)
@@ -31,7 +31,7 @@ void iwl_mvm_set_rekey_data(struct ieee80211_hw *hw,
        memcpy(mvmvif->rekey_data.kck, data->kck, data->kck_len);
        mvmvif->rekey_data.akm = data->akm & 0xFF;
        mvmvif->rekey_data.replay_ctr =
-               cpu_to_le64(be64_to_cpup((__be64 *)data->replay_ctr));
+               cpu_to_le64(be64_to_cpup((const __be64 *)data->replay_ctr));
        mvmvif->rekey_data.valid = true;
 
        mutex_unlock(&mvm->mutex);
@@ -1484,7 +1484,7 @@ static void iwl_mvm_report_wakeup_reasons(struct iwl_mvm *mvm,
                int pktsize = status->wake_packet_bufsize;
                int pktlen = status->wake_packet_length;
                const u8 *pktdata = status->wake_packet;
-               struct ieee80211_hdr *hdr = (void *)pktdata;
+               const struct ieee80211_hdr *hdr = (const void *)pktdata;
                int truncated = pktlen - pktsize;
 
                /* this would be a firmware bug */