commit | 2b8b4a2762f55627e96834776199eb8f078ae284 | [log] [tgz] |
---|---|---|
author | Aishwarya Pant <aishpant@gmail.com> | Fri Sep 15 18:53:08 2017 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Sep 18 12:00:07 2017 +0200 |
tree | d0936f58449c559b1ce1d8289d11303f874fc7e7 | |
parent | c8d5fa75141bec422be82117c826e78e715a9007 [diff] |
staging: rtl8188eu: remove parenthesis from right hand side of assignment Parenthesis are not needed around the right hand side of an assignment. This patch was made on the core files of rtl8188eu using the following coccinelle script. @@ binary operator op = {==,!=,&&,||,>=,<=,&,|}; expression l, r, t; @@ ( l = (r op t) | l = -( r -) ) Signed-off-by: Aishwarya Pant <aishpant@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>