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>
Loading
Please sign in to comment