commit | 5bc45c9d1ebaa1734c36f2abf1db85b579888224 | [log] [tgz] |
---|---|---|
author | Elise Lennion <elise.lennion@gmail.com> | Mon Oct 17 21:57:58 2016 -0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Oct 24 15:35:03 2016 +0200 |
tree | 2e7f9261fdf20fc1e730ebfe8a55af680aa7d6f2 | |
parent | 596f144943812954113f028c915e0b6c08200429 [diff] |
staging: xgifb: Remove unnecessary parentheses. The removed parentheses are unnecessary and don't add readability. Found using Coccinelle semantic patch: @@ expression e, e1, e2; @@ e &= ( (e1 == e2) | - (e1) + e1 ) @@ expression e, e1, e2; @@ e |= ( (e1 == e2) | - (e1) + e1 ) Signed-off-by: Elise Lennion <elise.lennion@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>