iwlwifi: pcie: remove set but not used variable tcph
authorJohannes Berg <johannes.berg@intel.com>
Fri, 13 Oct 2017 09:54:03 +0000 (11:54 +0200)
committerLuca Coelho <luciano.coelho@intel.com>
Wed, 18 Oct 2017 10:02:01 +0000 (13:02 +0300)
This variable is never used, so remove the code to set it.
After this, the variable 'iph' also has the same fate.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
drivers/net/wireless/intel/iwlwifi/pcie/tx-gen2.c

index 79e4c73..16b345f 100644 (file)
@@ -289,8 +289,7 @@ static int iwl_pcie_gen2_build_amsdu(struct iwl_trans *trans,
                struct sk_buff *csum_skb = NULL;
                unsigned int tb_len;
                dma_addr_t tb_phys;
-               struct tcphdr *tcph;
-               u8 *iph, *subf_hdrs_start = hdr_page->pos;
+               u8 *subf_hdrs_start = hdr_page->pos;
 
                total_len -= data_left;
 
@@ -312,8 +311,6 @@ static int iwl_pcie_gen2_build_amsdu(struct iwl_trans *trans,
                 * as MAC header.
                 */
                tso_build_hdr(skb, hdr_page->pos, &tso, data_left, !total_len);
-               iph = hdr_page->pos + 8;
-               tcph = (void *)(iph + ip_hdrlen);
 
                hdr_page->pos += snap_ip_tcp_hdrlen;