staging: ft1000: ft1000-usb: Remove useless cast on void pointer
commit099e1f8f777f4f329181415fc405a3a2093a3e15
authorTapasweni Pathak <tapaswenipathak@gmail.com>
Thu, 30 Oct 2014 11:34:24 +0000 (30 17:04 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 Oct 2014 20:06:04 +0000 (30 13:06 -0700)
treea23ffb4dd595071e1eac8e6abd6debbe6ee2d583
parente3b6db3294b079b5bc986cceb465feddf3623906
staging: ft1000: ft1000-usb: 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-usb/ft1000_download.c