]> Pileus Git - ~andy/linux/commitdiff
net: Fix warning on make htmldocs caused by skbuff.c
authorMasanari Iida <standby24x7@gmail.com>
Tue, 28 Jan 2014 16:05:28 +0000 (01:05 +0900)
committerDavid S. Miller <davem@davemloft.net>
Wed, 29 Jan 2014 02:06:06 +0000 (18:06 -0800)
This patch fixed following Warning while executing "make htmldocs".

Warning(/net/core/skbuff.c:2164): No description found for parameter 'from'
Warning(/net/core/skbuff.c:2164): Excess function parameter 'source'
description in 'skb_zerocopy'
Replace "@source" with "@from" fixed the warning.

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/core/skbuff.c

index 9ae6d11374d1567cf6f7a9511bc1c48bb8bade81..5976ef0846bdda08db6289bb91f05a63b85e6e3a 100644 (file)
@@ -2121,7 +2121,7 @@ EXPORT_SYMBOL_GPL(skb_zerocopy_headlen);
 /**
  *     skb_zerocopy - Zero copy skb to skb
  *     @to: destination buffer
- *     @source: source buffer
+ *     @from: source buffer
  *     @len: number of bytes to copy from source buffer
  *     @hlen: size of linear headroom in destination buffer
  *