aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/ping.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-09-22 13:32:16 -0400
committerDavid S. Miller <davem@davemloft.net>2013-09-23 01:51:07 -0400
commit6d3b334d677cd0c18cf99ababe1441b62dd08020 (patch)
tree6d2a56616c0ffb70f8e666d9a56815b66e673d4b /include/net/ping.h
parente4cb29fa722b793ca78a4f324ba84b374b3bde29 (diff)
ping.h: Remove extern from function prototypes
There are a mix of function prototypes with and without extern in the kernel sources. Standardize on not using extern for function prototypes. Function prototypes don't need to be written with extern. extern is assumed by the compiler. Its use is as unnecessary as using auto to declare automatic/local variables in a block. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/ping.h')
-rw-r--r--include/net/ping.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ping.h b/include/net/ping.h
index 5db0224b73ac..3f67704f3747 100644
--- a/include/net/ping.h
+++ b/include/net/ping.h
@@ -103,8 +103,8 @@ void ping_seq_stop(struct seq_file *seq, void *v);
103int ping_proc_register(struct net *net, struct ping_seq_afinfo *afinfo); 103int ping_proc_register(struct net *net, struct ping_seq_afinfo *afinfo);
104void ping_proc_unregister(struct net *net, struct ping_seq_afinfo *afinfo); 104void ping_proc_unregister(struct net *net, struct ping_seq_afinfo *afinfo);
105 105
106extern int __init ping_proc_init(void); 106int __init ping_proc_init(void);
107extern void ping_proc_exit(void); 107void ping_proc_exit(void);
108#endif 108#endif
109 109
110void __init ping_init(void); 110void __init ping_init(void);