Author: Eva Rachel Retuya <eraretuya@gmail.com> Eliminate unneeded parentheses around the right hand side of an assignment. Coccinelle semantic patch used: @@ expression e1, e2; identifier v; @@ ( v = (e1 == e2) | v = (e1 != e2) | v = (e1 = e2) | v = – ( e1 – ) ) Signed-off-by: …