mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/S3SaveState: cast Position for S3BootScriptLib explicitly
The BootScriptInsert() and BootScriptLabel() functions take the in/out parameter "Position" as (EFI_S3_BOOT_SCRIPT_POSITION*), and pass it to S3BootScriptMoveLastOpcode() and S3BootScriptLabel(), respectively. The callees take the in/out parameter "Position" as (VOID**). Add explicit casts for clarity. There is no change in functionality. Cc: Dandan Bi <dandan.bi@intel.com> Cc: Eric Dong <eric.dong@intel.com> Cc: Hao A Wu <hao.a.wu@intel.com> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Liming Gao <liming.gao@intel.com> Cc: Ray Ni <ray.ni@intel.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Hao A Wu <hao.a.wu@intel.com>
This commit is contained in:
parent
f662f91cb2
commit
812e3bade6
|
@ -810,7 +810,7 @@ BootScriptInsert (
|
|||
}
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
Status = S3BootScriptMoveLastOpcode (BeforeOrAfter, Position);
|
||||
Status = S3BootScriptMoveLastOpcode (BeforeOrAfter, (VOID **)Position);
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -851,7 +851,7 @@ BootScriptLabel (
|
|||
IN CONST CHAR8 *Label
|
||||
)
|
||||
{
|
||||
return S3BootScriptLabel (BeforeOrAfter, CreateIfNotFound, Position, Label);
|
||||
return S3BootScriptLabel (BeforeOrAfter, CreateIfNotFound, (VOID **)Position, Label);
|
||||
}
|
||||
/**
|
||||
Compare two positions in the boot script table and return their relative position.
|
||||
|
|
|
@ -808,7 +808,7 @@ BootScriptInsert (
|
|||
}
|
||||
|
||||
if (!EFI_ERROR (Status)) {
|
||||
Status = S3BootScriptMoveLastOpcode (BeforeOrAfter, Position);
|
||||
Status = S3BootScriptMoveLastOpcode (BeforeOrAfter, (VOID **)Position);
|
||||
}
|
||||
return Status;
|
||||
}
|
||||
|
@ -849,7 +849,7 @@ BootScriptLabel (
|
|||
IN CONST CHAR8 *Label
|
||||
)
|
||||
{
|
||||
return S3BootScriptLabel (BeforeOrAfter, CreateIfNotFound, Position, Label);
|
||||
return S3BootScriptLabel (BeforeOrAfter, CreateIfNotFound, (VOID **)Position, Label);
|
||||
}
|
||||
/**
|
||||
Compare two positions in the boot script table and return their relative position.
|
||||
|
|
Loading…
Reference in New Issue