ArmVirtPkg/KvmtoolCfgMgrDxe: Update DynamicPlatRepoLib usage

Update for the new token parameter in DynPlatRepoAddObject() and
HW_INFO_ADD_OBJECT.

Signed-off-by: Sarah Walker <Sarah.Walker2@arm.com>
This commit is contained in:
Sarah Walker
2025-10-01 09:39:22 +01:00
committed by mergify[bot]
parent 954ee29013
commit f09ea5f672

View File

@ -443,6 +443,8 @@ GetDeviceIdMappingArray (
@param [in] Context A pointer to the caller's context provided in @param [in] Context A pointer to the caller's context provided in
HwInfoParserInit (). HwInfoParserInit ().
@param [in] CmObjDesc CM_OBJ_DESCRIPTOR containing the CmObj(s) to add. @param [in] CmObjDesc CM_OBJ_DESCRIPTOR containing the CmObj(s) to add.
@param [in] NewToken Token for this object. If CM_NULL_TOKEN, then
a new token is generated.
@param [out] Token If provided and success, contain the token @param [out] Token If provided and success, contain the token
generated for the CmObj. generated for the CmObj.
@ -456,6 +458,7 @@ HwInfoAdd (
IN HW_INFO_PARSER_HANDLE ParserHandle, IN HW_INFO_PARSER_HANDLE ParserHandle,
IN VOID *Context, IN VOID *Context,
IN CONST CM_OBJ_DESCRIPTOR *CmObjDesc, IN CONST CM_OBJ_DESCRIPTOR *CmObjDesc,
IN CONST CM_OBJECT_TOKEN NewToken,
OUT CM_OBJECT_TOKEN *Token OPTIONAL OUT CM_OBJECT_TOKEN *Token OPTIONAL
) )
{ {
@ -484,6 +487,7 @@ HwInfoAdd (
Status = DynPlatRepoAddObject ( Status = DynPlatRepoAddObject (
PlatformRepo->DynamicPlatformRepo, PlatformRepo->DynamicPlatformRepo,
CmObjDesc, CmObjDesc,
NewToken,
Token Token
); );
if (EFI_ERROR (Status)) { if (EFI_ERROR (Status)) {