From: Supriya Karanth Date: Wed, 11 Mar 2015 16:11:00 +0000 (+0900) Subject: staging: sm750fb: Add void to function definition with no arguments X-Git-Tag: omap-for-v4.2/o2_dc~155^2~138^2~429 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6fa7db83e4f9ef5cd820b7c8aba06cd068035641;p=pandora-kernel.git staging: sm750fb: Add void to function definition with no arguments Found by checkpatch.pl - ERROR: Bad function definition A function with no arguments allows for variadic arguments. Add void in between the empty parentheses to indicate that the function takes no arguments. changes made using coccinelle script: @@ type T; identifier f; @@ T f( +void ) { ... } Signed-off-by: Supriya Karanth Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed