mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-03 12:24:37 -04:00
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:
committed by
Greg Kroah-Hartman
parent
dedc1a73c3
commit
c8d5fa7514
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user