commit | 6fa7db83e4f9ef5cd820b7c8aba06cd068035641 | [log] [tgz] |
---|---|---|
author | Supriya Karanth <iskaranth@gmail.com> | Thu Mar 12 01:11:00 2015 +0900 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sun Mar 15 18:41:14 2015 +0100 |
tree | b3dd1000975d576599fc95489a14f05afff59110 | |
parent | d6b0d6de1d2821dc0dd44b33fbe2b41e5ecac430 [diff] |
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 <iskaranth@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>