summaryrefslogtreecommitdiff
path: root/SecurityPkg/UserIdentification/PwdCredentialProviderDxe
diff options
context:
space:
mode:
authorgdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2011-10-26 02:03:57 +0000
committergdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524>2011-10-26 02:03:57 +0000
commit0c5b25f021a815d4ddce306139cc077db9afddfd (patch)
tree474e6918d9f4dc467f98a8f2e2a6a040f344efe3 /SecurityPkg/UserIdentification/PwdCredentialProviderDxe
parent5f4ef94a55807e1b42201866af232053183d3f8d (diff)
downloadedk2-platforms-0c5b25f021a815d4ddce306139cc077db9afddfd.tar.xz
Update UID drivers to align with latest UEFI spec 2.3.1.
Signed-off-by: gdong1 Reviewed-by: tye Reviewed-by: qianouyang git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12567 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SecurityPkg/UserIdentification/PwdCredentialProviderDxe')
-rw-r--r--SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c
index 0016db8663..afb090a919 100644
--- a/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c
+++ b/SecurityPkg/UserIdentification/PwdCredentialProviderDxe/PwdCredentialProvider.c
@@ -745,7 +745,6 @@ CredentialEnroll (
EFI_USER_INFO *UserInfo;
CHAR8 Password[CREDENTIAL_LEN];
EFI_INPUT_KEY Key;
- EFI_USER_MANAGER_PROTOCOL *UserManager;
UINT8 *UserId;
CHAR16 *QuestionStr;
CHAR16 *PromptStr;
@@ -754,15 +753,6 @@ CredentialEnroll (
return EFI_INVALID_PARAMETER;
}
- Status = gBS->LocateProtocol (
- &gEfiUserManagerProtocolGuid,
- NULL,
- (VOID **) &UserManager
- );
- if (EFI_ERROR (Status)) {
- return EFI_UNSUPPORTED;
- }
-
//
// Get User Identifier.
//
@@ -835,11 +825,6 @@ CredentialEnroll (
return Status;
}
- //
- // Notify the user manager driver that credential information has changed.
- //
- UserManager->Notify (UserManager, mCallbackInfo->DriverHandle);
-
return EFI_SUCCESS;
}