staging: wilc1000: host_interface: remove cast on void pointers
authorAlison Schofield <amsfield22@gmail.com>
Sat, 13 Feb 2016 06:51:04 +0000 (22:51 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 15 Feb 2016 00:31:44 +0000 (16:31 -0800)
Remove cast on void pointers. C programming language guarantees
the conversion from void pointer to any other pointer type.

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

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

Signed-off-by: Alison Schofield <amsfield22@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wilc1000/host_interface.c

index a6bc8a436c7e9a03e7c530d2f134e8d81704a2de..069fac1e6cab02615cfbcbd2a525edb0f49d626c 100644 (file)
@@ -953,7 +953,7 @@ static s32 Handle_Connect(struct wilc_vif *vif,
                return result;
        }
 
-       ptstrJoinBssParam = (struct join_bss_param *)pstrHostIFconnectAttr->params;
+       ptstrJoinBssParam = pstrHostIFconnectAttr->params;
        if (!ptstrJoinBssParam) {
                PRINT_ER("Required BSSID not found\n");
                result = -ENOENT;
@@ -2675,7 +2675,7 @@ static int hostIFthread(void *pvArg)
 {
        u32 u32Ret;
        struct host_if_msg msg;
-       struct wilc *wilc = (struct wilc*)pvArg;
+       struct wilc *wilc = pvArg;
        struct wilc_vif *vif;
 
        memset(&msg, 0, sizeof(struct host_if_msg));
This page took 0.029754 seconds and 5 git commands to generate.