From: Christopher Diaz Riveros Date: Tue, 20 Feb 2018 16:33:54 +0000 (-0500) Subject: staging: rtl8723bs: Remove unneeded cast X-Git-Tag: Ubuntu-5.10.0-12.13~8133^2~374 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8b6c7a347d5655efcbea905a6d02e9f670cf365a;p=mirror_ubuntu-hirsute-kernel.git staging: rtl8723bs: Remove unneeded cast Fix Coccinelle alert: drivers/staging//rtl8723bs/os_dep/sdio_intf.c:340:13-27: WARNING: casting value returned by memory allocation function to (struct adapter *) is useless. This issue was detected by using the Coccinelle software. Signed-off-by: Christopher Diaz Riveros Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c index 943324877707..99c407ba0874 100644 --- a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c +++ b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c @@ -337,7 +337,7 @@ static struct adapter *rtw_sdio_if1_init(struct dvobj_priv *dvobj, const struct struct adapter *padapter = NULL; PSDIO_DATA psdio = &dvobj->intf_data; - padapter = (struct adapter *)vzalloc(sizeof(*padapter)); + padapter = vzalloc(sizeof(*padapter)); if (padapter == NULL) { goto exit; }