summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8723bs
diff options
context:
space:
mode:
authorChristopher Diaz Riveros <chrisadr@gentoo.org>2018-02-20 11:33:54 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-02-22 14:59:05 +0100
commit8b6c7a347d5655efcbea905a6d02e9f670cf365a (patch)
tree6d642d7d8ecb94e6927c759d234a7b58e1a2433c /drivers/staging/rtl8723bs
parent5841b903371e830fb5b75dc917998277ca7d4ee6 (diff)
downloadop-kernel-dev-8b6c7a347d5655efcbea905a6d02e9f670cf365a.zip
op-kernel-dev-8b6c7a347d5655efcbea905a6d02e9f670cf365a.tar.gz
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 <chrisadr@gentoo.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8723bs')
-rw-r--r--drivers/staging/rtl8723bs/os_dep/sdio_intf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8723bs/os_dep/sdio_intf.c b/drivers/staging/rtl8723bs/os_dep/sdio_intf.c
index 94332487..99c407b 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;
}
OpenPOWER on IntegriCloud