]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
iwlwifi: mvm: use IEEE80211_TX_CTRL_PORT_CTRL_PROTO flag
authorJohannes Berg <johannes.berg@intel.com>
Fri, 31 Jan 2014 13:56:18 +0000 (14:56 +0100)
committerEmmanuel Grumbach <emmanuel.grumbach@intel.com>
Thu, 13 Feb 2014 08:27:24 +0000 (10:27 +0200)
Instead of checking the SKB protocol against EAP, check the
IEEE80211_TX_CTRL_PORT_CTRL_PROTO flag that more generally
indicates whether or not the frame is a port control frame.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
drivers/net/wireless/iwlwifi/mvm/tx.c

index 8d18bf23e4bf74454be4d3757ef577d6a352c26c..852d9d87a14c1da9cffeeb81f6c9c405c8afb185 100644 (file)
@@ -122,7 +122,7 @@ static void iwl_mvm_set_tx_cmd(struct iwl_mvm *mvm, struct sk_buff *skb,
                 * it
                 */
                WARN_ON_ONCE(info->flags & IEEE80211_TX_CTL_AMPDU);
-       } else if (skb->protocol == cpu_to_be16(ETH_P_PAE)) {
+       } else if (info->control.flags & IEEE80211_TX_CTRL_PORT_CTRL_PROTO) {
                tx_cmd->pm_frame_timeout = cpu_to_le16(2);
        } else {
                tx_cmd->pm_frame_timeout = 0;