]> git.baikalelectronics.ru Git - kernel.git/commit
staging: dgap: remove unnecessary space after cast
authorIoana Ciornei <ciorneiioana@gmail.com>
Wed, 21 Oct 2015 20:17:54 +0000 (23:17 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 25 Oct 2015 02:33:42 +0000 (19:33 -0700)
commitdb39959cece29ecef135a6f3bf1c0de1d7a1569d
tree20277c6b6e337954209a345d76359a3a27d9231b
parent0b1fd69117b420b3c309713d711fac3374ad6a0c
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>
drivers/staging/dgap/dgap.c