| Submitter | Henrique Camargo |
|---|---|
| Date | Aug. 3, 2010, 3:10 a.m. |
| Message ID | <1280805042.2089.6.camel@lemming> |
| Download | mbox | patch |
| Permalink | /patch/60714/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Henrique Camargo <henrique.camargo@ensitec.com.br> Date: Tue, 03 Aug 2010 00:10:42 -0300 > The typo was causing compilation errors since "dev" was not defined. > > Signed-off-by: Henrique Camargo <henrique.camargo@ensitec.com.br> Applied, thank you. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/davinci_emac.c b/drivers/net/davinci_emac.c index 25e14d2..b89b7bf 100644 --- a/drivers/net/davinci_emac.c +++ b/drivers/net/davinci_emac.c @@ -1182,8 +1182,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)
The typo was causing compilation errors since "dev" was not defined. Signed-off-by: Henrique Camargo <henrique.camargo@ensitec.com.br> --- drivers/net/davinci_emac.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)