forked from luck/tmp_suning_uos_patched
net: Fix a typo from "dev" to "ndev"
The typo was causing compilation errors since "dev" was not defined. Signed-off-by: Henrique Camargo <henrique.camargo@ensitec.com.br> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
81a618595a
commit
eabd8ba906
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user