Tag: 382f00561cf322d63bd5f946f226ec630ee9866a

staging: rtl8723au: Remove unnecessary else following 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