Tag: 150f6d457cfcb37646b026251d8a584978618726

crypto: n2 – Remove return statement from void function

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Return statement at the end of a void function is useless. The Coccinelle semantic patch used to make this change is as follows: // @@ identifier f; expression e; @@ void f(…) { } // Signed-off-by: Amitoj Kaur Chawla Signed-off-by: Herbert Xu — drivers/crypto/n2_core.c | 2 +- 1 file changed, …

Continue reading