Tag: 813923b1a21b73f3068d89b817a86bea5371108c

dm thin: 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: Mike Snitzer — drivers/md/dm-thin.c | 2 +- 1 file changed, …

Continue reading