Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 51fbb910 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

rcu: Remove __maybe_unused from rcu_cpu_has_callbacks()



The rcu_cpu_has_callbacks() function is now used in all configurations,
so this commit removes the __maybe_unused.

Signed-off-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
parent 96221795
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3315,7 +3315,7 @@ static int rcu_pending(void)
 * non-NULL, store an indication of whether all callbacks are lazy.
 * (If there are no callbacks, all of them are deemed to be lazy.)
 */
static bool __maybe_unused rcu_cpu_has_callbacks(bool *all_lazy)
static bool rcu_cpu_has_callbacks(bool *all_lazy)
{
	bool al = true;
	bool hc = false;