Commit eabd8ba9 authored by Henrique Camargo's avatar Henrique Camargo Committed by David S. Miller

net: Fix a typo from "dev" to "ndev"

The typo was causing compilation errors since "dev" was not defined.
Signed-off-by: default avatarHenrique Camargo <henrique.camargo@ensitec.com.br>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 81a61859
......@@ -1302,8 +1302,8 @@ static int emac_net_tx_complete(struct emac_priv *priv,
struct net_device *ndev = priv->ndev;
u32 cnt;
if (unlikely(num_tokens && netif_queue_stopped(dev)))
netif_start_queue(dev);
if (unlikely(num_tokens && netif_queue_stopped(ndev)))
netif_start_queue(ndev);
for (cnt = 0; cnt < num_tokens; cnt++) {
struct sk_buff *skb = (struct sk_buff *)net_data_tokens[cnt];
if (skb == NULL)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment