commit | 181225530e2f625869fb8ad242444d8efa8a478b | [log] [tgz] |
---|---|---|
author | Ioana Ciornei <ciorneiioana@gmail.com> | Wed Oct 21 23:17:54 2015 +0300 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Sat Oct 24 19:33:42 2015 -0700 |
tree | 20277c6b6e337954209a345d76359a3a27d9231b | |
parent | 629c7349a2e5bc6c5680c00b3e822b2384bf0523 [diff] |
staging: dgap: remove unnecessary space after cast This patch removes unnecessary spaces after the cast. Patch done with coccinelle semantic patch: @rule0@ type t; identifier e; constant c; expression expr; @@ ( - (t) e + (t)e | - (t) c + (t)c | - (t) expr + (t)expr ) Signed-off-by: Ioana Ciornei <ciorneiioana@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>