Staging:iio:Remove exceptional & on function name
authorBhumika Goyal <bhumirks@gmail.com>
Fri, 5 Feb 2016 03:53:32 +0000 (09:23 +0530)
committerJonathan Cameron <jic23@kernel.org>
Sat, 6 Feb 2016 18:07:04 +0000 (18:07 +0000)
commit478375cedcc0ae5b4cadd29ee5f74c3a5cb5d2ad
tree32a1e6dfc53eccf4ceb4d5110da6ace28257c1c1
parentc89e2e2a0dafde7fb64dfb441a37e93a54cbb844
Staging:iio:Remove exceptional & on function name

In this file,function names are otherwise used as pointers without &.
Found using coccinelle.
// <smpl>
@r@
identifier f;
@@

f(...) { ... }
@@
identifier r.f;
@@

- &f
+ f
// </smpl>

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/impedance-analyzer/ad5933.c
This page took 0.049156 seconds and 5 git commands to generate.