mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-09 06:43:06 +00:00
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:
parent
48b223d0de
commit
14a16dd544
46 changed files with 505 additions and 511 deletions
|
@ -206,7 +206,7 @@ void odm_memory_set(
|
|||
u32 length
|
||||
)
|
||||
{
|
||||
_rtw_memset(pbuf, value, length);
|
||||
memset(pbuf, value, length);
|
||||
}
|
||||
|
||||
s32 odm_compare_memory(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue