diff mbox

include/netdevice.h: fix nanodoc mismatch

Message ID 1249902289-25798-1-git-send-email-w.sang@pengutronix.de
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Wolfram Sang Aug. 10, 2009, 11:04 a.m. UTC
nanodoc was missing an ndo_-prefix.

Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: "David S. Miller" <davem@davemloft.net>
---
 include/linux/netdevice.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

David Miller Aug. 13, 2009, 5:16 a.m. UTC | #1
From: Wolfram Sang <w.sang@pengutronix.de>
Date: Mon, 10 Aug 2009 13:04:49 +0200

> nanodoc was missing an ndo_-prefix.
> 
> Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>

I'll apply this, thanks.
--
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
Wolfram Sang Oct. 7, 2009, 9:18 a.m. UTC | #2
On Wed, Aug 12, 2009 at 10:16:25PM -0700, David Miller wrote:
> From: Wolfram Sang <w.sang@pengutronix.de>
> Date: Mon, 10 Aug 2009 13:04:49 +0200
> 
> > nanodoc was missing an ndo_-prefix.
> > 
> > Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
> 
> I'll apply this, thanks.

I can't find it in your trees. Slipped through?
David Miller Oct. 7, 2009, 10:10 a.m. UTC | #3
From: Wolfram Sang <w.sang@pengutronix.de>
Date: Wed, 7 Oct 2009 11:18:03 +0200

> On Wed, Aug 12, 2009 at 10:16:25PM -0700, David Miller wrote:
>> From: Wolfram Sang <w.sang@pengutronix.de>
>> Date: Mon, 10 Aug 2009 13:04:49 +0200
>> 
>> > nanodoc was missing an ndo_-prefix.
>> > 
>> > Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
>> 
>> I'll apply this, thanks.
> 
> I can't find it in your trees. Slipped through?

Looks that way.

Sorry about that, could you please resend?

Thanks!
--
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
diff mbox

Patch

diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index d4a4d98..277f1c2 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -557,7 +557,7 @@  struct netdev_queue {
  *	Callback uses when the transmitter has not made any progress
  *	for dev->watchdog ticks.
  *
- * struct net_device_stats* (*get_stats)(struct net_device *dev);
+ * struct net_device_stats* (*ndo_get_stats)(struct net_device *dev);
  *	Called when a user wants to get the network device usage
  *	statistics. If not defined, the counters in dev->stats will
  *	be used.