From: Aya Mahfouz Date: Tue, 10 Mar 2015 17:00:53 +0000 (+0200) Subject: staging: ft1000: adjust function arguments X-Git-Tag: omap-for-v4.2/o2_dc~155^2~138^2~443 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08a02cb8834d8a09502358b08929897e3ffb6abf;p=pandora-kernel.git staging: ft1000: adjust function arguments 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 -) ,...) @@ expression e; identifier f; @@ f(..., -( e -) ,...) Signed-off-by: Aya Mahfouz Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed