Commit 4d414269 authored by Guillaume Gomez's avatar Guillaume Gomez Committed by Tejun Heo

percpu: Remove unneeded return from void function

Signed-off-by: default avatarGuillaume Gomez <guillaume1.gomez@gmail.com>
Acked-by: default avatarChristoph Lameter <cl@linux.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
parent 8005c49d
......@@ -116,7 +116,7 @@ void percpu_ref_reinit(struct percpu_ref *ref);
*/
static inline void percpu_ref_kill(struct percpu_ref *ref)
{
return percpu_ref_kill_and_confirm(ref, NULL);
percpu_ref_kill_and_confirm(ref, NULL);
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment