]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
kernel: Remove unneeded return from void function
authorGuillaume Gomez <guillaume1.gomez@gmail.com>
Wed, 23 Sep 2015 10:34:30 +0000 (12:34 +0200)
committerTejun Heo <tj@kernel.org>
Wed, 23 Sep 2015 14:58:22 +0000 (10:58 -0400)
Signed-off-by: Guillaume Gomez <guillaume1.gomez@gmail.com>
Acked-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
include/linux/percpu-refcount.h

index 12c9b485beb718241f0346a261462d82939e266b..84f542df7ff5cca0932f02b6629f8229244c2d1a 100644 (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);
 }
 
 /*