1
0
Fork 0

percpu: Remove unneeded return from void function

Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
hifive-unleashed-5.1
Guillaume Gomez 2015-09-23 12:34:30 +02:00 committed by Tejun Heo
parent 8005c49d9a
commit 4d4142696e
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
/*