From 8f17a38c61a5954353c02bba8fc6537cd33e5dbe Mon Sep 17 00:00:00 2001 From: Sachin Kamat Date: Wed, 28 May 2014 17:36:26 +0530 Subject: [PATCH] staging: rtl8723au: Remove redundant casting in rtw_sta_mgt.c Casting value returned by k[cmz]alloc is useless. Signed-off-by: Sachin Kamat Signed-off-by: Greg Kroah-Hartman --- 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; -- 2.7.4