netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] include/netdevice.h: fix nanodoc mismatch
@ 2009-08-10 11:04 Wolfram Sang
  2009-08-13  5:16 ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfram Sang @ 2009-08-10 11:04 UTC (permalink / raw)
  To: netdev; +Cc: trivial, Wolfram Sang, David S. Miller

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(-)

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.
-- 
1.6.3.1


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] include/netdevice.h: fix nanodoc mismatch
  2009-08-10 11:04 [PATCH] include/netdevice.h: fix nanodoc mismatch Wolfram Sang
@ 2009-08-13  5:16 ` David Miller
  2009-10-07  9:18   ` Wolfram Sang
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2009-08-13  5:16 UTC (permalink / raw)
  To: w.sang; +Cc: netdev, trivial

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.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] include/netdevice.h: fix nanodoc mismatch
  2009-08-13  5:16 ` David Miller
@ 2009-10-07  9:18   ` Wolfram Sang
  2009-10-07 10:10     ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfram Sang @ 2009-10-07  9:18 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, trivial

[-- Attachment #1: Type: text/plain, Size: 500 bytes --]

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?

-- 
Pengutronix e.K.                           | Wolfram Sang                |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] include/netdevice.h: fix nanodoc mismatch
  2009-10-07  9:18   ` Wolfram Sang
@ 2009-10-07 10:10     ` David Miller
  2009-10-07 13:05       ` [PATCH RESEND] " Wolfram Sang
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2009-10-07 10:10 UTC (permalink / raw)
  To: w.sang; +Cc: netdev, trivial

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!

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH RESEND] include/netdevice.h: fix nanodoc mismatch
  2009-10-07 10:10     ` David Miller
@ 2009-10-07 13:05       ` Wolfram Sang
  2009-10-07 20:53         ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Wolfram Sang @ 2009-10-07 13:05 UTC (permalink / raw)
  To: netdev; +Cc: Wolfram Sang, David S. Miller

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(-)

diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 94958c1..812a5f3 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.
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH RESEND] include/netdevice.h: fix nanodoc mismatch
  2009-10-07 13:05       ` [PATCH RESEND] " Wolfram Sang
@ 2009-10-07 20:53         ` David Miller
  0 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2009-10-07 20:53 UTC (permalink / raw)
  To: w.sang; +Cc: netdev

From: Wolfram Sang <w.sang@pengutronix.de>
Date: Wed,  7 Oct 2009 15:05:58 +0200

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

Applied, FOR REAL this time! :-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-10-07 20:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-10 11:04 [PATCH] include/netdevice.h: fix nanodoc mismatch Wolfram Sang
2009-08-13  5:16 ` David Miller
2009-10-07  9:18   ` Wolfram Sang
2009-10-07 10:10     ` David Miller
2009-10-07 13:05       ` [PATCH RESEND] " Wolfram Sang
2009-10-07 20:53         ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).