Correct the dummy ConfigAccess Extract and RouteConfig behavior according to UEFI specification.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8335 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
lgao4
2009-05-19 09:13:47 +00:00
parent 6b3ecf5cc2
commit cdcc36ae92

View File

@ -94,6 +94,7 @@ FakeExtractConfig (
OUT EFI_STRING *Results OUT EFI_STRING *Results
) )
{ {
*Progress = Request;
return EFI_NOT_FOUND; return EFI_NOT_FOUND;
} }
@ -121,7 +122,15 @@ FakeRouteConfig (
OUT EFI_STRING *Progress OUT EFI_STRING *Progress
) )
{ {
return EFI_SUCCESS; if (Configuration == NULL) {
return EFI_INVALID_PARAMETER;
}
if (Progress == NULL) {
return EFI_INVALID_PARAMETER;
}
return EFI_NOT_FOUND;
} }
/** /**