diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-05-22 13:41:07 +0200 |
---|---|---|
committer | Luca Coelho <luciano.coelho@intel.com> | 2015-10-05 13:34:51 +0200 |
commit | 0316d30ea3e66379cd30ed70a114bc282159bb4c (patch) | |
tree | 9e5971e275ad18534805cf34986ce15db43bc80e /drivers/net/wireless/iwlwifi/mvm/mvm.h | |
parent | iwlwifi: size firmware flags memory correctly (diff) | |
download | linux-0316d30ea3e66379cd30ed70a114bc282159bb4c.tar.xz linux-0316d30ea3e66379cd30ed70a114bc282159bb4c.zip |
iwlwifi: mvm: add minimal multi-RXQ infrastructure
Since the new multi-queue capability depends on a new firmware API,
we can already add some code for it. If the new API is present, a
new opmode ops struct is used that handles the new rx_rss method.
For now, only restructure the RX handling to distinguish between
the two. Future patches will convert the new infrastructure to
actually use the new RX descriptor layout.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/mvm.h')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/mvm.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/mvm.h b/drivers/net/wireless/iwlwifi/mvm/mvm.h index f4e22f5a29d1..0d3aff1b4bad 100644 --- a/drivers/net/wireless/iwlwifi/mvm/mvm.h +++ b/drivers/net/wireless/iwlwifi/mvm/mvm.h @@ -970,6 +970,12 @@ static inline bool iwl_mvm_is_csum_supported(struct iwl_mvm *mvm) IWL_UCODE_TLV_CAPA_CSUM_SUPPORT); } +static inline bool iwl_mvm_has_new_rx_api(struct iwl_mvm *mvm) +{ + /* firmware flag isn't defined yet */ + return false; +} + extern const u8 iwl_mvm_ac_to_tx_fifo[]; struct iwl_rate_info { |