diff options
author | Sara Sharon | 2016-11-20 12:50:39 +0100 |
---|---|---|
committer | Luca Coelho | 2017-02-03 15:26:39 +0100 |
commit | 4f23f206ddce85a92b1acdebe0f4e9ed01b1d3f4 (patch) | |
tree | 4000e95e42dc516caddd313db30a5936ce42eb28 /drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h | |
parent | iwlwifi: mvm: Use aux queue for offchannel frames in dqa (diff) | |
download | kernel-qcow2-linux-4f23f206ddce85a92b1acdebe0f4e9ed01b1d3f4.tar.gz kernel-qcow2-linux-4f23f206ddce85a92b1acdebe0f4e9ed01b1d3f4.tar.xz kernel-qcow2-linux-4f23f206ddce85a92b1acdebe0f4e9ed01b1d3f4.zip |
iwlwifi: mvm: cleanup incorrect and redundant define
Currently we have up to 3 phy contexts - defined by NUM_PHY_CTX.
However - some code paths validate the ID by using MAX_PHYS define
which is set to 4.
While there is no harm it is incorrect - since the maximum is 3.
Remove the define and use the correct one.
Cleanup the code a bit while at it.
Signed-off-by: Sara Sharon <sara.sharon@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h')
-rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h b/drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h index 0b77073e719a..91f53596130b 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h +++ b/drivers/net/wireless/intel/iwlwifi/mvm/fw-api.h @@ -713,7 +713,6 @@ struct iwl_error_resp { #define MAX_MACS_IN_BINDING (3) #define MAX_BINDINGS (4) #define AUX_BINDING_INDEX (3) -#define MAX_PHYS (4) /* Used to extract ID and color from the context dword */ #define FW_CTXT_ID_POS (0) |