1 --- a/src/drv_mei_cpe_msg_process.c
2 +++ b/src/drv_mei_cpe_msg_process.c
3 @@ -3524,7 +3524,12 @@ IFX_int32_t MEI_IoctlCmdMsgWrite(
7 +#if (LINUX_VERSION_CODE < KERNEL_VERSION(5,19,0))
8 memcpy(pDestPtr, pUserMsg->pPayload, pUserMsg->paylSize_byte);
10 + unsafe_memcpy(pDestPtr, pUserMsg->pPayload, pUserMsg->paylSize_byte,
11 + /* field-spanning writing is used here intentionally */);