]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
iwlwifi: mvm: avoid exceeding the allowed print length
authorGolan Ben-Ami <golan.ben.ami@intel.com>
Wed, 25 Jan 2017 13:11:30 +0000 (15:11 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Wed, 8 Feb 2017 15:54:23 +0000 (17:54 +0200)
Divide a mfuart related print so it won't exceed the allowed
MAX_MSG_LEN (110 bytes) per print.

Fixes: 19f63c531b85 ("iwlwifi: mvm: support v2 of mfuart load notification")
Signed-off-by: Golan Ben-Ami <golan.ben.ami@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/mvm/fw.c

index c42ef8681b75292667847692c59513ade5cf49f3..45cb4f476e761b18dd7a2326ff01cc571e9b3df9 100644 (file)
@@ -1396,19 +1396,15 @@ void iwl_mvm_rx_mfuart_notif(struct iwl_mvm *mvm,
        struct iwl_rx_packet *pkt = rxb_addr(rxb);
        struct iwl_mfuart_load_notif *mfuart_notif = (void *)pkt->data;
 
+       IWL_DEBUG_INFO(mvm,
+                      "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
+                      le32_to_cpu(mfuart_notif->installed_ver),
+                      le32_to_cpu(mfuart_notif->external_ver),
+                      le32_to_cpu(mfuart_notif->status),
+                      le32_to_cpu(mfuart_notif->duration));
+
        if (iwl_rx_packet_payload_len(pkt) == sizeof(*mfuart_notif))
                IWL_DEBUG_INFO(mvm,
-                              "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x, image size: 0x%08x\n",
-                              le32_to_cpu(mfuart_notif->installed_ver),
-                              le32_to_cpu(mfuart_notif->external_ver),
-                              le32_to_cpu(mfuart_notif->status),
-                              le32_to_cpu(mfuart_notif->duration),
+                              "MFUART: image size: 0x%08x\n",
                               le32_to_cpu(mfuart_notif->image_size));
-       else
-               IWL_DEBUG_INFO(mvm,
-                              "MFUART: installed ver: 0x%08x, external ver: 0x%08x, status: 0x%08x, duration: 0x%08x\n",
-                              le32_to_cpu(mfuart_notif->installed_ver),
-                              le32_to_cpu(mfuart_notif->external_ver),
-                              le32_to_cpu(mfuart_notif->status),
-                              le32_to_cpu(mfuart_notif->duration));
 }