]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
rcu: Remove "extern" from function declarations in kernel/rcu/rcu.h
authorTeodora Baluta <teobaluta@gmail.com>
Mon, 11 Nov 2013 15:11:24 +0000 (17:11 +0200)
committerPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Thu, 12 Dec 2013 20:34:17 +0000 (12:34 -0800)
Function prototypes don't need to have the "extern" keyword since this
is the default behavior. Its explicit use is redundant.  This commit
therefore removes them.

Signed-off-by: Teodora Baluta <teobaluta@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
kernel/rcu/rcu.h

index a8f981a2d1109309c5e06fb79fcd5a047f11ed86..79c3877e9c5b83e089ef319a2e72a9aaddde6fa3 100644 (file)
@@ -96,7 +96,7 @@ static inline void debug_rcu_head_unqueue(struct rcu_head *head)
 }
 #endif /* #else !CONFIG_DEBUG_OBJECTS_RCU_HEAD */
 
-extern void kfree(const void *);
+void kfree(const void *);
 
 static inline bool __rcu_reclaim(const char *rn, struct rcu_head *head)
 {