aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/wireless/intel/iwlwifi/mvm/ops.c
diff options
context:
space:
mode:
authorSara Sharon <sara.sharon@intel.com>2016-04-03 08:27:55 -0400
committerLuca Coelho <luciano.coelho@intel.com>2016-07-01 11:09:39 -0400
commit6d99c88f6003062796cade71997731caec0dd8dc (patch)
tree244a62db2ce4df1bdc9eb9a3a7ca5887bd856f80 /drivers/net/wireless/intel/iwlwifi/mvm/ops.c
parentc5241b0c8c0bb2bfd69effaa81e30fa26a16adda (diff)
iwlwifi: mvm: remove RX_PHY support for 9000 device
In multiple RX queues architecture, the RX_PHY notification is no longer useful as it is received in the default queue even for packets that are received on RSS queue, and cannot be accessed without locking. All the needed data is in the new RX packet metadata and firmware will no longer send this notification for 9000 devices. Remove support of 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/ops.c')
-rw-r--r--drivers/net/wireless/intel/iwlwifi/mvm/ops.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/ops.c b/drivers/net/wireless/intel/iwlwifi/mvm/ops.c
index 64d2b4f04ac2..55f114d24148 100644
--- a/drivers/net/wireless/intel/iwlwifi/mvm/ops.c
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/ops.c
@@ -958,8 +958,6 @@ static void iwl_mvm_rx_mq(struct iwl_op_mode *op_mode,
958 958
959 if (likely(pkt->hdr.cmd == REPLY_RX_MPDU_CMD)) 959 if (likely(pkt->hdr.cmd == REPLY_RX_MPDU_CMD))
960 iwl_mvm_rx_mpdu_mq(mvm, napi, rxb, 0); 960 iwl_mvm_rx_mpdu_mq(mvm, napi, rxb, 0);
961 else if (pkt->hdr.cmd == REPLY_RX_PHY_CMD)
962 iwl_mvm_rx_phy_cmd_mq(mvm, rxb);
963 else if (unlikely(pkt->hdr.group_id == DATA_PATH_GROUP && 961 else if (unlikely(pkt->hdr.group_id == DATA_PATH_GROUP &&
964 pkt->hdr.cmd == RX_QUEUES_NOTIFICATION)) 962 pkt->hdr.cmd == RX_QUEUES_NOTIFICATION))
965 iwl_mvm_rx_queue_notif(mvm, rxb, 0); 963 iwl_mvm_rx_queue_notif(mvm, rxb, 0);