]> git.baikalelectronics.ru Git - kernel.git/commit
iio: dac: ad5504: Remove unnecessary cast on void pointer
authorsimran singhal <singhalsimran0@gmail.com>
Sat, 1 Apr 2017 14:11:53 +0000 (19:41 +0530)
committerJonathan Cameron <jic23@kernel.org>
Sun, 2 Apr 2017 08:48:50 +0000 (09:48 +0100)
commit6e0de32e584c7aaa640e1f92340806ab8749e820
treeee49c3cf53aa275170e0fd19de92c9035cfdc304
parented9e1cac85113cd4118b1d93fcd01be7021f4e36
iio: dac: ad5504: 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/dac/ad5504.c