From: Pranith Kumar Date: Tue, 8 Jul 2014 22:26:10 +0000 (-0400) Subject: rcu: Fix sparse warning about rcu_batches_completed_preempt() being non-static X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=bf33eb1aef23e8049cd222471d35b0988c420b18;p=openwrt%2Fstaging%2Fblogic.git rcu: Fix sparse warning about rcu_batches_completed_preempt() being non-static fix sparse warning about rcu_batches_completed_preempt() being non-static by marking it as static Signed-off-by: Pranith Kumar Signed-off-by: Paul E. McKenney --- diff --git a/kernel/rcu/tree_plugin.h b/kernel/rcu/tree_plugin.h index 218fae30c380..5defa2f089af 100644 --- a/kernel/rcu/tree_plugin.h +++ b/kernel/rcu/tree_plugin.h @@ -134,7 +134,7 @@ static void __init rcu_bootup_announce(void) * Return the number of RCU-preempt batches processed thus far * for debug and statistics. */ -long rcu_batches_completed_preempt(void) +static long rcu_batches_completed_preempt(void) { return rcu_preempt_state.completed; }