Tag: 08a02cb8834d8a09502358b08929897e3ffb6abf

staging: ft1000: adjust function arguments

Author: Aya Mahfouz <mahfouz.saif.elyazal@gmail.com> Handles the following issues: Removing extra parentheses around function arguments, Removing unnecessary pointer to pointer cast. Issues detected and resolved using the following coccinelle script: @@ expression e; type t; identifier f; @@ f(…, -(t *) e ,…) @@ expression e; identifier f; @@ f(…, & -( e -) ,…) @@ …

Continue reading