Staging: netlogic: remove unused variable in xlr_net_start_xmit()

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>
This commit is contained in:
Wei Yongjun 2013-03-14 22:55:47 +08:00 committed by Greg Kroah-Hartman
parent c2a10d70f2
commit 44c0186d0c

View file

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