staging: ft1000: ft1000-pcmcia: Remove useless cast on void pointer
commite3b6db3294b079b5bc986cceb465feddf3623906
authorTapasweni Pathak <tapaswenipathak@gmail.com>
Thu, 30 Oct 2014 11:34:15 +0000 (30 17:04 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 20:06:03 +0000 (30 13:06 -0700)
tree3f55037baf74362e1e0535ad5bf8aeef6a760755
parentaa54b60d63abf51227336de9c1ec13bdbabfee88
staging: ft1000: ft1000-pcmcia: Remove useless cast on void pointer

void pointers do not need to be cast to other pointer types.

The semantic patch used to find this:

@r@
expression x;
void* e;
type T;
identifier f;
@@

(
  *((T *)e)
|
  ((T *)x)[...]
|
  ((T *)x)->f
|
- (T *)
  e
)

Build tested it.

Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ft1000/ft1000-pcmcia/ft1000_hw.c