[PATCH 3/7] staging: rtl8723au: Remove redundant casting in rtw_sta_mgt.c

Sachin Kamat sachin.kamat at linaro.org
Wed May 28 12:06:26 UTC 2014


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

Signed-off-by: Sachin Kamat <sachin.kamat at 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



More information about the devel mailing list