percpu: 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>
Mon, 16 Nov 2015 15:40:50 +0000 (10:40 -0500)
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 12c9b48..84f542d 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);
 }
 
 /*