rtl8188eu: Eliminate the wrapper _rtw_memset()

This code is nothing more than memset().

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2018-11-24 12:07:51 -06:00
parent 48b223d0de
commit 14a16dd544
46 changed files with 505 additions and 511 deletions

View file

@ -206,7 +206,7 @@ void odm_memory_set(
u32 length
)
{
_rtw_memset(pbuf, value, length);
memset(pbuf, value, length);
}
s32 odm_compare_memory(