summaryrefslogtreecommitdiff
path: root/drivers/staging/r8188eu/os_dep/mlme_linux.c
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2021-08-05 13:37:13 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-08-05 20:43:25 +0200
commit79f712ea994de30b3887a45e9ca42fd47b840b62 (patch)
tree890ec6f71092cfb70ff80bb6a5f4f43123ddedcc /drivers/staging/r8188eu/os_dep/mlme_linux.c
parent66e9564aae0185eb7f36d946b0ba22b779a4e193 (diff)
staging: r8188eu: Remove wrappers for kalloc() and kzalloc()
These wrappers involve an in_interrupt() call, which is not frowned on in the kernel. These changes decrease the size of the driver by a trivial amount. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net> Link: https://lore.kernel.org/r/20210805183717.23007-2-Larry.Finger@lwfinger.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/r8188eu/os_dep/mlme_linux.c')
-rw-r--r--drivers/staging/r8188eu/os_dep/mlme_linux.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/r8188eu/os_dep/mlme_linux.c b/drivers/staging/r8188eu/os_dep/mlme_linux.c
index 766b346afbb8..0855b218f7b1 100644
--- a/drivers/staging/r8188eu/os_dep/mlme_linux.c
+++ b/drivers/staging/r8188eu/os_dep/mlme_linux.c
@@ -119,10 +119,9 @@ void rtw_report_sec_ie(struct adapter *adapter, u8 authmode, u8 *sec_ie)
if (authmode == _WPA_IE_ID_) {
RT_TRACE(_module_mlme_osdep_c_, _drv_info_,
("rtw_report_sec_ie, authmode=%d\n", authmode));
- buff = rtw_malloc(IW_CUSTOM_MAX);
+ buff = kzalloc(IW_CUSTOM_MAX, GFP_KERNEL);
if (!buff)
return;
- memset(buff, 0, IW_CUSTOM_MAX);
p = buff;
p += sprintf(p, "ASSOCINFO(ReqIEs =");
len = sec_ie[1]+2;