staging: iio: Remove unnecessary cast on void pointer
authorArushi Singhal <arushisinghal19971997@gmail.com>
Wed, 7 Mar 2018 13:17:17 +0000 (18:47 +0530)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Wed, 7 Mar 2018 19:52:58 +0000 (19:52 +0000)
commitbd28425a307417d3bd5bdf18e819cc7f90ac1a4d
tree7f47e846e8ad44ae7f99a2a90106e8e95cab5c29
parent200905fdf08ab8168826b6ce43406d0638de22bf
staging: iio: Remove unnecessary cast on void pointer

The following Coccinelle script was used to detect this:
@r@
expression x;
void* e;
type T;
identifier f;
@@
(
  *((T *)e)
|
  ((T *)x)[...]
|
  ((T*)x)->f
|

- (T*)
  e
)

Signed-off-by: Arushi Singhal <arushisinghal19971997@gmail.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/staging/iio/adc/ad7816.c