summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMordechay Goodstein <mordechay.goodstein@intel.com>2020-09-11 20:44:36 +0300
committerLuca Coelho <luciano.coelho@intel.com>2020-10-01 21:53:02 +0300
commitd14f499dd2edc5511f7f38ec8e1a48467f3077df (patch)
treec23c359e5bb93a42879f9afd1e3042b2164d9b14
parent02d31e9b626acd9346bcd4069dcf6f54c18f53cb (diff)
iwlwifi: wowlan: adapt to wowlan status API version 10
In version 10 we actually go back to the struct size before 9 so only for version 9 we need the size fixup Signed-off-by: Mordechay Goodstein <mordechay.goodstein@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com> Link: https://lore.kernel.org/r/iwlwifi.20200911204056.33b55b3ca440.Ib0202c7011d8d0e09f55fcceceb9d3d5051631c6@changeid Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
-rw-r--r--drivers/net/wireless/intel/iwlwifi/mvm/d3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/d3.c b/drivers/net/wireless/intel/iwlwifi/mvm/d3.c
index 2a94545d737f..bcdd2b376ce5 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/d3.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/d3.c
@@ -1592,7 +1592,8 @@ struct iwl_wowlan_status *iwl_mvm_send_wowlan_get_status(struct iwl_mvm *mvm)
status_size = sizeof(*status);
- if (notif_ver == IWL_FW_CMD_VER_UNKNOWN || notif_ver < 9)
+ /* only ver 9 has a different size */
+ if (notif_ver == IWL_FW_CMD_VER_UNKNOWN || notif_ver != 9)
status_size = sizeof(*v7);
if (len < status_size) {