From: Janani Ravichandran Date: Thu, 25 Feb 2016 19:13:24 +0000 (-0500) Subject: staging: wlan-ng: Drop void pointer cast X-Git-Tag: Ubuntu-5.2.0-15.16~9577^2~97 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=0440107039cea810238233c494e40029bf2f54e6;p=mirror_ubuntu-eoan-kernel.git staging: wlan-ng: Drop void pointer cast Void pointers need not 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/wlan-ng/prism2mib.c b/drivers/staging/wlan-ng/prism2mib.c index e1b2e47aae9b..5f3c7ea8ee4b 100644 --- a/drivers/staging/wlan-ng/prism2mib.c +++ b/drivers/staging/wlan-ng/prism2mib.c @@ -379,7 +379,7 @@ static int prism2mib_bytearea2pstr(struct mibrec *mib, void *data) { int result; - p80211pstrd_t *pstr = (p80211pstrd_t *) data; + p80211pstrd_t *pstr = data; u8 bytebuf[MIB_TMP_MAXLEN]; if (isget) {