diff options
author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2015-09-23 06:34:30 -0400 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2015-11-16 10:40:50 -0500 |
commit | 4d4142696e18cf30af319031d47bba46853a4605 (patch) | |
tree | a960691bf71c6f00f2cb67698ccf1a0c519b9554 | |
parent | 8005c49d9aea74d382f474ce11afbbc7d7130bec (diff) |
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>
-rw-r--r-- | include/linux/percpu-refcount.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); | |||
116 | */ | 116 | */ |
117 | static inline void percpu_ref_kill(struct percpu_ref *ref) | 117 | static inline void percpu_ref_kill(struct percpu_ref *ref) |
118 | { | 118 | { |
119 | return percpu_ref_kill_and_confirm(ref, NULL); | 119 | percpu_ref_kill_and_confirm(ref, NULL); |
120 | } | 120 | } |
121 | 121 | ||
122 | /* | 122 | /* |