mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2025-12-10 00:04:17 +00:00
Replace _rtw_memcpy with memcpy
This commit is contained in:
@@ -215,8 +215,8 @@ mptbt_BtFwOpCodeProcess(
|
||||
pH2c->opCodeVer = opCodeVer;
|
||||
pH2c->reqNum = pMptCtx->h2cReqNum;
|
||||
/* PlatformMoveMemory(&pH2c->buf[0], pH2cPar, h2cParaLen); */
|
||||
/* _rtw_memcpy(&pH2c->buf[0], pH2cPar, h2cParaLen); */
|
||||
_rtw_memcpy(pH2c->buf, pH2cPar, h2cParaLen);
|
||||
/* memcpy(&pH2c->buf[0], pH2cPar, h2cParaLen); */
|
||||
memcpy(pH2c->buf, pH2cPar, h2cParaLen);
|
||||
|
||||
RTW_INFO("[MPT], pH2c->opCode=%d\n", pH2c->opCode);
|
||||
RTW_INFO("[MPT], pH2c->opCodeVer=%d\n", pH2c->opCodeVer);
|
||||
@@ -499,7 +499,7 @@ MPTBT_FwC2hBtMpCtrl(
|
||||
|
||||
case EXT_C2H_TRIG_BY_BT_FW:
|
||||
RTW_INFO("[MPT], EXT_C2H_TRIG_BY_BT_FW\n");
|
||||
_rtw_memcpy(&pMptCtx->c2hBuf[0], tmpBuf, length);
|
||||
memcpy(&pMptCtx->c2hBuf[0], tmpBuf, length);
|
||||
RTW_INFO("[MPT], pExtC2h->statusCode=0x%x\n", pExtC2h->statusCode);
|
||||
RTW_INFO("[MPT], pExtC2h->retLen=0x%x\n", pExtC2h->retLen);
|
||||
RTW_INFO("[MPT], pExtC2h->opCodeVer=0x%x\n", pExtC2h->opCodeVer);
|
||||
|
||||
Reference in New Issue
Block a user