Tag: fee268767ce8bfdb5389b84cd02ba7837b5350d5

misc: mic: Remove return statements from void functions

Author: Amitoj Kaur Chawla <amitoj1606@gmail.com> Return statements at the end of void functions are 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: Greg Kroah-Hartman — drivers/misc/mic/host/mic_boot.c | 6 +++— 1 file changed, 3 …

Continue reading