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/accel/adis16203.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/iio/accel/adis16203.c > b/drivers/staging/iio/accel/adis16203.c > index 68189ad..b59755a 100644 > --- a/drivers/staging/iio/accel/adis16203.c > +++ b/drivers/staging/iio/accel/adis16203.c > @@ -233,8 +233,8 @@ static const struct iio_chan_spec adis16203_channels[] = { > }; > > static const struct iio_info adis16203_info = { > - .read_raw = &adis16203_read_raw, > - .write_raw = &adis16203_write_raw, > + .read_raw = adis16203_read_raw, > + .write_raw = adis16203_write_raw, > .update_scan_mode = adis_update_scan_mode, > .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
- Re: [PATCH v1 05/10] staging: iio: adis16240: Re... Jonathan Cameron
- [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
- Re: [PATCH v1 10/10] staging: iio: gyro: Remove ... Jonathan Cameron
- Re: [PATCH v1 10/10] staging: iio: gyro: Rem... Jonathan Cameron
- [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