summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8188eu/hal/hal_com.c
diff options
context:
space:
mode:
authornavin patidar <navin.patidar@gmail.com>2014-06-22 08:19:28 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-06-27 00:27:12 (GMT)
commit1ce39848e17c34d494e46d50ec3cfa249b0342a7 (patch)
treed1f0db061a4aa1f6c7796039b9db22d84967eaaf /drivers/staging/rtl8188eu/hal/hal_com.c
parent56ed3914b032f6a029834d5ab404b17c82e2fe16 (diff)
downloadlinux-1ce39848e17c34d494e46d50ec3cfa249b0342a7.tar.xz
staging: rtl8188eu: Remove function _rtw_memset()
Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8188eu/hal/hal_com.c')
-rw-r--r--drivers/staging/rtl8188eu/hal/hal_com.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/rtl8188eu/hal/hal_com.c b/drivers/staging/rtl8188eu/hal/hal_com.c
index 429de69..baefb46 100644
--- a/drivers/staging/rtl8188eu/hal/hal_com.c
+++ b/drivers/staging/rtl8188eu/hal/hal_com.c
@@ -350,7 +350,7 @@ s32 c2h_evt_read(struct adapter *adapter, u8 *buf)
c2h_evt = (struct c2h_evt_hdr *)buf;
- _rtw_memset(c2h_evt, 0, 16);
+ memset(c2h_evt, 0, 16);
*buf = usb_read8(adapter, REG_C2HEVT_MSG_NORMAL);
*(buf+1) = usb_read8(adapter, REG_C2HEVT_MSG_NORMAL + 1);