diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-05-28 17:36:24 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-28 14:36:03 -0700 |
commit | 47b0c98db487c5fdb55a7b9e44513052f7a3e7e1 (patch) | |
tree | 733f607a9681ddeb6e85be30a8df9642ca6f8726 /drivers/staging | |
parent | 6d488a0c780346f5b0a7f7bd41cd347deb2952b2 (diff) | |
download | lwn-47b0c98db487c5fdb55a7b9e44513052f7a3e7e1.tar.gz lwn-47b0c98db487c5fdb55a7b9e44513052f7a3e7e1.zip |
staging: rtl8723au: Remove redundant casting in rtw_mlme.c
Casting value returned by k[cmz]alloc is useless.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/rtl8723au/core/rtw_mlme.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/staging/rtl8723au/core/rtw_mlme.c b/drivers/staging/rtl8723au/core/rtw_mlme.c index 547986ac0102..7170258d2601 100644 --- a/drivers/staging/rtl8723au/core/rtw_mlme.c +++ b/drivers/staging/rtl8723au/core/rtw_mlme.c @@ -1824,8 +1824,7 @@ int rtw_set_auth23a(struct rtw_adapter * adapter, goto exit; } - psetauthparm = (struct setauth_parm*) - kzalloc(sizeof(struct setauth_parm), GFP_KERNEL); + psetauthparm = kzalloc(sizeof(struct setauth_parm), GFP_KERNEL); if (!psetauthparm) { kfree(pcmd); res = _FAIL; @@ -1866,7 +1865,7 @@ int rtw_set_key23a(struct rtw_adapter *adapter, goto exit; } - pcmd = (struct cmd_obj *)kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); + pcmd = kzalloc(sizeof(struct cmd_obj), GFP_KERNEL); if (!pcmd) { res = _FAIL; /* try again */ goto exit; |