Casting value returned by k[cmz]alloc is useless.

Signed-off-by: Sachin Kamat <sachin.ka...@linaro.org>
---
 drivers/staging/rtl8723au/core/rtw_sta_mgt.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8723au/core/rtw_sta_mgt.c 
b/drivers/staging/rtl8723au/core/rtw_sta_mgt.c
index b829c2e..14a82be 100644
--- a/drivers/staging/rtl8723au/core/rtw_sta_mgt.c
+++ b/drivers/staging/rtl8723au/core/rtw_sta_mgt.c
@@ -116,7 +116,7 @@ rtw_alloc_stainfo23a(struct sta_priv *pstapriv, u8 *hwaddr, 
gfp_t gfp)
        int i = 0;
        u16  wRxSeqInitialValue = 0xffff;
 
-       psta = (struct sta_info *)kmalloc(sizeof(struct sta_info), gfp);
+       psta = kmalloc(sizeof(struct sta_info), gfp);
        if (!psta)
                return NULL;
 
-- 
1.7.9.5

_______________________________________________
devel mailing list
de...@linuxdriverproject.org
http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel

Reply via email to