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:
parent
1204de7b50
commit
013d51771a
|
@ -369,7 +369,7 @@ SetBootMode (
|
||||||
|
|
||||||
Hob.Raw = GetHobList ();
|
Hob.Raw = GetHobList ();
|
||||||
Hob.HandoffInformationTable->BootMode = BootMode;
|
Hob.HandoffInformationTable->BootMode = BootMode;
|
||||||
return BootMode;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue