diff options
author | Iulia Manda <iulia.manda21@gmail.com> | 2014-03-12 18:37:24 +0200 |
---|---|---|
committer | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2014-04-29 08:44:33 -0700 |
commit | a235c0916543d8b886405f8871dc644124c7cf78 (patch) | |
tree | 6396a02367d49cdd2e749a532d36eca10fb8f63e /include/linux/rcupdate.h | |
parent | 48a7639ce80cf279834d0d44865e49ecd714f37d (diff) | |
download | op-kernel-dev-a235c0916543d8b886405f8871dc644124c7cf78.zip op-kernel-dev-a235c0916543d8b886405f8871dc644124c7cf78.tar.gz |
rcu: Remove "extern" from function declaration in include/linux/rcupdate.h
Because functions have the extern storage class specifier by default,
this keyword can be removed. It is redundant to use it explicitly.
Signed-off-by: Iulia Manda <iulia.manda21@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Reviewed-by: Josh Triplett <josh@joshtriplett.org>
Diffstat (limited to 'include/linux/rcupdate.h')
-rw-r--r-- | include/linux/rcupdate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/rcupdate.h b/include/linux/rcupdate.h index 00a7fd6..fdc422f 100644 --- a/include/linux/rcupdate.h +++ b/include/linux/rcupdate.h @@ -328,7 +328,7 @@ extern struct lockdep_map rcu_lock_map; extern struct lockdep_map rcu_bh_lock_map; extern struct lockdep_map rcu_sched_lock_map; extern struct lockdep_map rcu_callback_map; -extern int debug_lockdep_rcu_enabled(void); +int debug_lockdep_rcu_enabled(void); /** * rcu_read_lock_held() - might we be in RCU read-side critical section? |