iio: common: ms_sensors: Remove unnecessary cast on void pointer
authorsimran singhal <singhalsimran0@gmail.com>
Sat, 1 Apr 2017 14:09:21 +0000 (19:39 +0530)
committerJonathan Cameron <jic23@kernel.org>
Sun, 2 Apr 2017 08:47:57 +0000 (09:47 +0100)
commit6c6c0987f94f9f5539d0f97e588383b0c5c6f458
tree352df74287513e68427488bf05663f0d59768499
parent0b568b3c4ae582dc8f20960dc02dc229957ea3d3
iio: common: ms_sensors: 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: simran singhal <singhalsimran0@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/common/ms_sensors/ms_sensors_i2c.c