diff options
author | Joel Fernandes (Google) <[email protected]> | 2023-07-29 14:27:36 +0000 |
---|---|---|
committer | Frederic Weisbecker <[email protected]> | 2023-09-13 22:28:49 +0200 |
commit | 4502138acc8f4139c94ce0ec0eee926f8805fbbc (patch) | |
tree | 67183c0980992472e3e2772af0d3a56fd23f2307 | |
parent | f0a31b26be1f725e3f56beed76486c1b034120b3 (diff) |
rcu/tree: Remove superfluous return from void call_rcu* functions
The return keyword is not needed here.
Signed-off-by: Joel Fernandes (Google) <[email protected]>
Signed-off-by: Paul E. McKenney <[email protected]>
Signed-off-by: Frederic Weisbecker <[email protected]>
-rw-r--r-- | kernel/rcu/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c index cb1caefa8bd0..7c79480bfaa0 100644 --- a/kernel/rcu/tree.c +++ b/kernel/rcu/tree.c @@ -2713,7 +2713,7 @@ __call_rcu_common(struct rcu_head *head, rcu_callback_t func, bool lazy_in) */ void call_rcu_hurry(struct rcu_head *head, rcu_callback_t func) { - return __call_rcu_common(head, func, false); + __call_rcu_common(head, func, false); } EXPORT_SYMBOL_GPL(call_rcu_hurry); #endif @@ -2764,7 +2764,7 @@ EXPORT_SYMBOL_GPL(call_rcu_hurry); */ void call_rcu(struct rcu_head *head, rcu_callback_t func) { - return __call_rcu_common(head, func, IS_ENABLED(CONFIG_RCU_LAZY)); + __call_rcu_common(head, func, IS_ENABLED(CONFIG_RCU_LAZY)); } EXPORT_SYMBOL_GPL(call_rcu); |