From: Sara Sharon Date: Mon, 13 Feb 2017 11:17:11 +0000 (+0200) Subject: iwlwifi: mvm: disable RX queue notification for a000 devices X-Git-Tag: v4.12-rc1~129^2~119^2~5^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc0294696456365f1e80fa8a0a6e13d076316b30;p=platform%2Fkernel%2Flinux-exynos.git iwlwifi: mvm: disable RX queue notification for a000 devices For a000 devices, we don't really have multi RX queue for now, until we have the RX queue configuration API. Disable RX queue notification for now. Signed-off-by: Sara Sharon Signed-off-by: Luca Coelho --- diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c index 26cf3df..f35f295 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/mac80211.c @@ -4218,7 +4218,8 @@ void iwl_mvm_sync_rx_queues_internal(struct iwl_mvm *mvm, lockdep_assert_held(&mvm->mutex); - if (!iwl_mvm_has_new_rx_api(mvm)) + /* TODO - remove a000 disablement when we have RXQ config API */ + if (!iwl_mvm_has_new_rx_api(mvm) || iwl_mvm_has_new_tx_api(mvm)) return; notif->cookie = mvm->queue_sync_cookie;