diff options
author | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-10-26 02:03:57 +0000 |
---|---|---|
committer | gdong1 <gdong1@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-10-26 02:03:57 +0000 |
commit | 0c5b25f021a815d4ddce306139cc077db9afddfd (patch) | |
tree | 474e6918d9f4dc467f98a8f2e2a6a040f344efe3 /SecurityPkg/UserIdentification/UsbCredentialProviderDxe | |
parent | 5f4ef94a55807e1b42201866af232053183d3f8d (diff) | |
download | edk2-0c5b25f021a815d4ddce306139cc077db9afddfd.tar.gz edk2-0c5b25f021a815d4ddce306139cc077db9afddfd.tar.bz2 edk2-0c5b25f021a815d4ddce306139cc077db9afddfd.zip |
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/UsbCredentialProviderDxe')
-rw-r--r-- | SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c index 979cdfd2cb..327a2b0388 100644 --- a/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c +++ b/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/UsbCredentialProvider.c @@ -674,7 +674,6 @@ CredentialEnroll ( USB_INFO UsbInfo;
EFI_USER_INFO *UserInfo;
EFI_INPUT_KEY Key;
- EFI_USER_MANAGER_PROTOCOL *UserManager;
UINT8 *UserId;
CHAR16 *QuestionStr;
CHAR16 *PromptStr;
@@ -683,15 +682,6 @@ CredentialEnroll ( return EFI_INVALID_PARAMETER;
}
- Status = gBS->LocateProtocol (
- &gEfiUserManagerProtocolGuid,
- NULL,
- (VOID **) &UserManager
- );
- if (EFI_ERROR (Status)) {
- return EFI_UNSUPPORTED;
- }
-
//
// Get User Identifier
//
@@ -749,11 +739,6 @@ CredentialEnroll ( return Status;
}
- //
- // Notify the user manager driver that credential information has changed.
- //
- UserManager->Notify (UserManager, mCallbackInfo->DriverHandle);
-
return EFI_SUCCESS;
}
|