Staging: netlogic: remove unused variable in xlr_net_start_xmit()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Thu, 14 Mar 2013 14:55:47 +0000 (22:55 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 14 Mar 2013 22:03:56 +0000 (15:03 -0700)
The variable 'qmap' is initialized but never used
otherwise, so remove the unused variable.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/netlogic/xlr_net.c

index efc6172b73b64c45fc162e1ab5d4930ec4d0ec35..dd98cb1468a45d5aadb911bbcb3476302ec05fc5 100644 (file)
@@ -293,10 +293,8 @@ static netdev_tx_t xlr_net_start_xmit(struct sk_buff *skb,
        struct nlm_fmn_msg msg;
        struct xlr_net_priv *priv = netdev_priv(ndev);
        int ret;
-       u16 qmap;
        u32 flags;
 
-       qmap = skb->queue_mapping;
        xlr_make_tx_desc(&msg, virt_to_phys(skb->data), skb);
        flags = nlm_cop2_enable();
        ret = nlm_fmn_send(2, 0, priv->nd->tx_stnid, &msg);