Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59b97b36 authored by Alison Schofield's avatar Alison Schofield Committed by Greg Kroah-Hartman
Browse files

staging: wilc1000: host_interface: remove cast on void pointers



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: default avatarAlison Schofield <amsfield22@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ecdd5c74
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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));