commit | 150f6d457cfcb37646b026251d8a584978618726 | [log] [tgz] |
---|---|---|
author | Amitoj Kaur Chawla <amitoj1606@gmail.com> | Fri Mar 18 19:08:48 2016 +0530 |
committer | Herbert Xu <herbert@gondor.apana.org.au> | Tue Apr 05 20:35:44 2016 +0800 |
tree | 0be4a3742086c7027bd0d152e76a79abb4f45e79 | |
parent | dc1d9dee3042d4c507bd7eb557a06918a1f09ae0 [diff] |
crypto: n2 - Remove return statement from void function Return statement at the end of a void function is useless. The Coccinelle semantic patch used to make this change is as follows: //<smpl> @@ identifier f; expression e; @@ void f(...) { <... - return e; ...> } //</smpl> Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>