J722SXH01EVM: Linker error

Part Number: J722SXH01EVM

I defined one const pointer as Os_ReadyQueMg_Inf, and set some variables to it. But I found the address of Os_ReadyQueueMark_Core0 is 0x0000FFFF that is wrong, and the other three members's addresses are right.
 
static const Os_ReadyQueueManageType Os_ReadyQueMg_Core0 =
{
    Os_ReadyQueueMark_Core0 ,
    Os_ActivateQueueSize_Core0 ,
    Os_ReadyQueue_Core0 ,
    Os_ReadyMap_Core0 ,
    CFG_PRIORITY_MAX_CORE0 ,
};
 
const Os_ReadyQueueManageType * const Os_ReadyQueMg_Inf[OS_AUTOSAR_CORES] =
/* PRQA S 1531 -- */
{
    &Os_ReadyQueMg_Core0,
};
 
image.png