]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: iio: cdc: ad7746: Remove exceptional & on function name
authorsimran singhal <singhalsimran0@gmail.com>
Sat, 11 Mar 2017 14:26:37 +0000 (19:56 +0530)
committerJonathan Cameron <jic23@kernel.org>
Mon, 13 Mar 2017 21:20:32 +0000 (21:20 +0000)
Remove & from function pointers to conform to the style found elsewhere
in the file.  Done using the following semantic patch

// <smpl>
@r@
identifier f;
@@

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

- &f
+ f
// </smpl>

Signed-off-by: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/cdc/ad7746.c

index 81f8b9ee11208f34d061e57dbebf3566835592bc..6294de71bfaeb1f1c1d275a304ef5662b4924f65 100644 (file)
@@ -664,8 +664,8 @@ static int ad7746_read_raw(struct iio_dev *indio_dev,
 
 static const struct iio_info ad7746_info = {
        .attrs = &ad7746_attribute_group,
-       .read_raw = &ad7746_read_raw,
-       .write_raw = &ad7746_write_raw,
+       .read_raw = ad7746_read_raw,
+       .write_raw = ad7746_write_raw,
        .driver_module = THIS_MODULE,
 };