diff mbox

[net-next] net: ipv6: ping_v6_seq_show() can be static

Message ID 20130609122856.GA3166@localhost
State Changes Requested, archived
Delegated to: David Miller
Headers show

Commit Message

kbuild test robot June 9, 2013, 12:28 p.m. UTC
TO: Lorenzo Colitti <lorenzo@google.com>
CC: netdev@vger.kernel.org 
CC: linux-kernel@vger.kernel.org 

Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
---
 net/ipv6/ping.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Sorry I just realized this patch could be folded into the previous
one.. It was two patches because the problems are found in two times.

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

--- linux-next.orig/net/ipv6/ping.c	2013-06-09 20:20:11.085728559 +0800
+++ linux-next/net/ipv6/ping.c	2013-06-09 20:25:25.913736041 +0800
@@ -198,7 +198,7 @@  static void *ping_v6_seq_start(struct se
 	return ping_seq_start(seq, pos, AF_INET6);
 }
 
-int ping_v6_seq_show(struct seq_file *seq, void *v)
+static int ping_v6_seq_show(struct seq_file *seq, void *v)
 {
 	if (v == SEQ_START_TOKEN) {
 		seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);