EmbeddedPkg/PrePiHobLib: Fix SetBootMode return value

After updating Doxygen, we can see that SetBootMode returns the BootMode
instead of status code as it should, fix it to return status.

Signed-off-by: Vishal Oliyil Kunnil <quic_vishalo@quicinc.com>
This commit is contained in:
Vishal Oliyil Kunnil 2024-08-19 14:05:57 -07:00 committed by mergify[bot]
parent 1204de7b50
commit 013d51771a

View File

@ -369,7 +369,7 @@ SetBootMode (
Hob.Raw = GetHobList ();
Hob.HandoffInformationTable->BootMode = BootMode;
return BootMode;
return EFI_SUCCESS;
}
/**