From: Aya Mahfouz Date: Tue, 10 Mar 2015 16:56:37 +0000 (+0200) Subject: staging: media: lirc: fix multiple issues with function arguments X-Git-Tag: omap-for-v4.1/fixes-rc1~165^2~138^2~446 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=028b242d1b91e95869a084c43ce3497203f84e5c;p=pandora-kernel.git staging: media: lirc: fix multiple issues with function arguments Handles the following issues: Removing extra parentheses around function arguments, Removing unnecessary pointer to pointer casts. 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