Staging: iio: light: remove exceptional & on function name
authorBhumika Goyal <bhumirks@gmail.com>
Fri, 12 Feb 2016 15:10:27 +0000 (20:40 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Feb 2016 00:44:06 +0000 (16:44 -0800)
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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/iio/light/isl29018.c

index bbf7e35..756057c 100644 (file)
@@ -614,15 +614,15 @@ static int isl29018_chip_init(struct isl29018_chip *chip)
 static const struct iio_info isl29018_info = {
        .attrs = &isl29018_group,
        .driver_module = THIS_MODULE,
-       .read_raw = &isl29018_read_raw,
-       .write_raw = &isl29018_write_raw,
+       .read_raw = isl29018_read_raw,
+       .write_raw = isl29018_write_raw,
 };
 
 static const struct iio_info isl29023_info = {
        .attrs = &isl29023_group,
        .driver_module = THIS_MODULE,
-       .read_raw = &isl29018_read_raw,
-       .write_raw = &isl29018_write_raw,
+       .read_raw = isl29018_read_raw,
+       .write_raw = isl29018_write_raw,
 };
 
 static bool is_volatile_reg(struct device *dev, unsigned int reg)