Staging: rtl8723bs/os_dep: Remove typecast in kfree

Remove typecast of pointer in kfree((u8 *)pdvobj) as
it is not needed.

Found using the following Coccinelle semantic patch:
@@
identifier x;
type t;
@@

-kfree((t *)x)
+kfree(x)

Signed-off-by: Meghana Madhyastha <meghana.madhyastha@gmail.com>
Acked-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Meghana Madhyastha 2017-09-16 13:42:16 +05:30 committed by Greg Kroah-Hartman
parent dedc1a73c3
commit c8d5fa7514
1 changed files with 1 additions and 1 deletions

View File

@ -719,7 +719,7 @@ void devobj_deinit(struct dvobj_priv *pdvobj)
mutex_destroy(&pdvobj->setch_mutex);
mutex_destroy(&pdvobj->setbw_mutex);
kfree((u8 *)pdvobj);
kfree(pdvobj);
}
u8 rtw_reset_drv_sw(struct adapter *padapter)