From: Guillaume Gomez Date: Wed, 23 Sep 2015 10:34:30 +0000 (+0200) Subject: percpu: Remove unneeded return from void function X-Git-Tag: v4.5-rc1~157^2~1 X-Git-Url: http://git.cascardo.eti.br/?a=commitdiff_plain;h=4d4142696e18cf30af319031d47bba46853a4605;p=cascardo%2Flinux.git percpu: Remove unneeded return from void function Signed-off-by: Guillaume Gomez Acked-by: Christoph Lameter Signed-off-by: Tejun Heo --- diff --git a/include/linux/percpu-refcount.h b/include/linux/percpu-refcount.h index 12c9b485beb7..84f542df7ff5 100644 --- a/include/linux/percpu-refcount.h +++ b/include/linux/percpu-refcount.h @@ -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); } /*