Tag: 5f9001dc4221a3d63e2ad5f6d5aef159c2734704

staging: android: Remove unneeded else following a return

Author: Janani Ravichandran <janani.rvchndrn@gmail.com> Remove unnecessary else when there is a return statement in the corresponding if block. Coccinelle patch used: @rule1@ expression e1; @@ if (e1) { … return …; } – else{ … – } @rule2@ expression e2; statement s1; @@ if(e2) { … return …; } – else s1 Signed-off-by: Janani Ravichandran …

Continue reading