On 11/03/17 14:26, simran singhal wrote: > 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 <singhalsimr...@gmail.com> Applied. > --- > drivers/staging/iio/cdc/ad7152.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/staging/iio/cdc/ad7152.c > b/drivers/staging/iio/cdc/ad7152.c > index e8609b8..59ef93c 100644 > --- a/drivers/staging/iio/cdc/ad7152.c > +++ b/drivers/staging/iio/cdc/ad7152.c > @@ -441,9 +441,9 @@ static int ad7152_write_raw_get_fmt(struct iio_dev > *indio_dev, > > static const struct iio_info ad7152_info = { > .attrs = &ad7152_attribute_group, > - .read_raw = &ad7152_read_raw, > - .write_raw = &ad7152_write_raw, > - .write_raw_get_fmt = &ad7152_write_raw_get_fmt, > + .read_raw = ad7152_read_raw, > + .write_raw = ad7152_write_raw, > + .write_raw_get_fmt = ad7152_write_raw_get_fmt, > .driver_module = THIS_MODULE, > }; > >
- [PATCH v1 00/10] staging: iio: Remove exceptional & o... simran singhal
- [PATCH v1 05/10] staging: iio: adis16240: Remove exc... simran singhal
- [PATCH v1 06/10] staging: iio: adis16201: Remove exc... simran singhal
- Re: [PATCH v1 06/10] staging: iio: adis16201: Re... Jonathan Cameron
- [PATCH v1 08/10] staging: iio: adis16203: Remove exc... simran singhal
- Re: [PATCH v1 08/10] staging: iio: adis16203: Re... Jonathan Cameron
- [PATCH v1 10/10] staging: iio: gyro: Remove exceptio... simran singhal
- [PATCH v1 03/10] staging: iio: cdc: ad7746: Remove e... simran singhal
- Re: [PATCH v1 03/10] staging: iio: cdc: ad7746: ... Jonathan Cameron
- [PATCH v1 04/10] staging: iio: cdc: ad7152: Remove e... simran singhal
- Re: [PATCH v1 04/10] staging: iio: cdc: ad7152: ... Jonathan Cameron
- [PATCH v1 02/10] staging: iio: ad7780: Remove except... simran singhal
- Re: [PATCH v1 02/10] staging: iio: ad7780: Remov... Jonathan Cameron
- [PATCH v1 01/10] staging: iio: ad7192: Remove except... simran singhal
- Re: [PATCH v1 01/10] staging: iio: ad7192: Remov... Jonathan Cameron
- [PATCH v1 09/10] staging: iio: resolver: Remove exce... simran singhal
- Re: [PATCH v1 09/10] staging: iio: resolver: Rem... Jonathan Cameron
- [PATCH v1 07/10] staging: iio: adis16209: Remove exc... simran singhal
- Re: [PATCH v1 07/10] staging: iio: adis16209: Re... Jonathan Cameron
- Re: [PATCH v1 00/10] staging: iio: Remove exceptiona... Jonathan Cameron