Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)