Tag: b383f2acbdd51be601a770d86445924106adc573

staging: rtl8188eu: core: Remove unnecessary braces

Author: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> This patch removes braces for single statement blocks. The warning was detected using checkpatch.pl. Coccinelle was used to make the change. @@ expression e,e1; @@ – if (e) { + if (e) e1; – } Signed-off-by: Bhaktipriya Shridhar Signed-off-by: Greg Kroah-Hartman — drivers/staging/rtl8188eu/core/rtw_recv.c | 12 ++++——– 1 file changed, 4 insertions(+), …

Continue reading