commit | b383f2acbdd51be601a770d86445924106adc573 | [log] [tgz] |
---|---|---|
author | Bhaktipriya Shridhar <bhaktipriya96@gmail.com> | Fri Feb 19 04:18:24 2016 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Feb 20 15:06:51 2016 -0800 |
tree | 0515691d01cdd0b43eab36dbdead850022898593 | |
parent | 816c2db010c0e76488aeb3a31442f3d2f4de29cc [diff] |
staging: rtl8188eu: core: Remove unnecessary braces 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 <bhaktipriya96@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>