summaryrefslogtreecommitdiff
path: root/drivers/staging/csr/sme_sys.c
diff options
context:
space:
mode:
authorDevendra Naga <devendra.aaru@gmail.com>2012-09-04 19:26:43 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-09-04 21:35:05 (GMT)
commit6f6ed3db33720276068d70c17ce305e4132a123f (patch)
tree311404b39ed7fbd5d13724f4b3bc3e32390b907e /drivers/staging/csr/sme_sys.c
parent34f86d06f07cdf87598daa1588a08110047c0b2f (diff)
downloadlinux-fsl-qoriq-6f6ed3db33720276068d70c17ce305e4132a123f.tar.xz
staging: csr: remove casting of return value from kmalloc
as per Documentation/CodingStyle, casting of void pointer to any other pointer is not needed Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Acked-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/csr/sme_sys.c')
-rw-r--r--drivers/staging/csr/sme_sys.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/csr/sme_sys.c b/drivers/staging/csr/sme_sys.c
index 4330f2a..240344c 100644
--- a/drivers/staging/csr/sme_sys.c
+++ b/drivers/staging/csr/sme_sys.c
@@ -2121,7 +2121,7 @@ static int peer_add_new_record(unifi_priv_t *priv,CsrWifiRouterCtrlPeerAddReq *r
/* Allocate for the new station record , to avoid race condition would happen between ADD_PEER &
* DEL_PEER the allocation made atomic memory rather than kernel memory
*/
- newRecord = (CsrWifiRouterCtrlStaInfo_t *) kmalloc(sizeof(CsrWifiRouterCtrlStaInfo_t), GFP_ATOMIC);
+ newRecord = kmalloc(sizeof(CsrWifiRouterCtrlStaInfo_t), GFP_ATOMIC);
if (!newRecord) {
unifi_error(priv, "failed to allocate the %d bytes of mem for station record\n",
sizeof(CsrWifiRouterCtrlStaInfo_t));