diff options
author | James Morris <jmorris@namei.org> | 2008-06-11 11:00:10 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2008-07-14 01:02:03 -0400 |
commit | 65fc7668006b537f7ae8451990c0ed9ec882544e (patch) | |
tree | 9f0f2b9c98aaa330534e225c5644e997cf01c1a9 /security | |
parent | 2baf06df85b27c1d64867883a0692519594f1ef2 (diff) |
security: fix return of void-valued expressions
Fix several warnings generated by sparse of the form
"returning void-valued expression".
Signed-off-by: James Morris <jmorris@namei.org>
Acked-by: Casey Schaufler <casey@schaufler-ca.com>
Acked-by: Serge Hallyn <serue@us.ibm.com>
Diffstat (limited to 'security')
-rw-r--r-- | security/security.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/security.c b/security/security.c index c4507ce2a5a0..2c0a5876b939 100644 --- a/security/security.c +++ b/security/security.c | |||
@@ -895,7 +895,7 @@ EXPORT_SYMBOL(security_secctx_to_secid); | |||
895 | 895 | ||
896 | void security_release_secctx(char *secdata, u32 seclen) | 896 | void security_release_secctx(char *secdata, u32 seclen) |
897 | { | 897 | { |
898 | return security_ops->release_secctx(secdata, seclen); | 898 | security_ops->release_secctx(secdata, seclen); |
899 | } | 899 | } |
900 | EXPORT_SYMBOL(security_release_secctx); | 900 | EXPORT_SYMBOL(security_release_secctx); |
901 | 901 | ||
@@ -1012,12 +1012,12 @@ int security_sk_alloc(struct sock *sk, int family, gfp_t priority) | |||
1012 | 1012 | ||
1013 | void security_sk_free(struct sock *sk) | 1013 | void security_sk_free(struct sock *sk) |
1014 | { | 1014 | { |
1015 | return security_ops->sk_free_security(sk); | 1015 | security_ops->sk_free_security(sk); |
1016 | } | 1016 | } |
1017 | 1017 | ||
1018 | void security_sk_clone(const struct sock *sk, struct sock *newsk) | 1018 | void security_sk_clone(const struct sock *sk, struct sock *newsk) |
1019 | { | 1019 | { |
1020 | return security_ops->sk_clone_security(sk, newsk); | 1020 | security_ops->sk_clone_security(sk, newsk); |
1021 | } | 1021 | } |
1022 | 1022 | ||
1023 | void security_sk_classify_flow(struct sock *sk, struct flowi *fl) | 1023 | void security_sk_classify_flow(struct sock *sk, struct flowi *fl) |