staging: wlan-ng: prism2mgmt.c: Drop void pointer cast

Void pointers don't need to be cast to other pointer types.
Semantic patch used:

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

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

Signed-off-by: Janani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Janani Ravichandran 2016-02-25 14:22:27 -05:00 committed by Greg Kroah-Hartman
parent 3e83b0ab50
commit 3cfcb95c72
1 changed files with 1 additions and 1 deletions

View File

@ -375,7 +375,7 @@ int prism2mgmt_scan_results(wlandevice_t *wlandev, void *msgp)
int count;
req = (struct p80211msg_dot11req_scan_results *) msgp;
req = msgp;
req->resultcode.status = P80211ENUM_msgitem_status_data_ok;