Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757931Ab0G2QEQ (ORCPT ); Thu, 29 Jul 2010 12:04:16 -0400 Received: from mail-ey0-f174.google.com ([209.85.215.174]:62682 "EHLO mail-ey0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754429Ab0G2QEO (ORCPT ); Thu, 29 Jul 2010 12:04:14 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=x501tg+W5T511+aeIEihEZQjLt33BntXzP5HUGRiJHGKdRSQhxGmLdeI2V33zPGZX1 bSRwr01dubl2rR0OYJvQgVACJDgk/eols/2efEjeqd4Lt5sjOWpDfjGPn0vl9fhlnZFM ZtFvQG0nxbilME92wBSau7xWQUkk/hzREc8Wo= Date: Thu, 29 Jul 2010 20:03:46 +0400 From: Vasiliy Kulikov To: Henrique Camargo Cc: "David S. Miller" , Chaithrika U S , Sriramakrishnan , Kevin Hilman , Jiri Pirko , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] drivers: Fixes a typo from "dev" to "ndev" that caused compilation erros. Message-ID: <20100729160346.GA3318@albatros> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1434 Lines: 39 On Thu, Jul 29, 2010 at 12:51 -0300, Henrique Camargo wrote: > From: Henrique Camargo > > Fixes a typo from "dev" to "ndev" that caused compilation errors. > > Signed-off-by: Henrique Camargo Thanks, Reviewed-by: Kulikov Vasiliy Also I've checked my other patches of removing private stats, the rest are ok. > --- > drivers/net/davinci_emac.c | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > > 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) > -- > 1.7.0.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/