OvmfPkg/AmdSev/SecretDxe: make secret location naming generic
It is anticipated that this part of the code will work for both Intel TDX and AMD SEV, so remove the SEV specific naming and change to ConfidentialComputing as a more architecture neutral prefix. Apart from the symbol rename, there are no code changes. Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com> Message-Id: <20201216014146.2229-3-jejb@linux.ibm.com> Reviewed-by: Jiewen Yao <Jiewen.yao@intel.com> Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
committed by
mergify[bot]
parent
caf8b3872a
commit
96201ae7bf
@@ -6,9 +6,9 @@
|
||||
**/
|
||||
#include <PiDxe.h>
|
||||
#include <Library/UefiBootServicesTableLib.h>
|
||||
#include <Guid/SevLaunchSecret.h>
|
||||
#include <Guid/ConfidentialComputingSecret.h>
|
||||
|
||||
STATIC SEV_LAUNCH_SECRET_LOCATION mSecretDxeTable = {
|
||||
STATIC CONFIDENTIAL_COMPUTING_SECRET_LOCATION mSecretDxeTable = {
|
||||
FixedPcdGet32 (PcdSevLaunchSecretBase),
|
||||
FixedPcdGet32 (PcdSevLaunchSecretSize),
|
||||
};
|
||||
@@ -21,7 +21,7 @@ InitializeSecretDxe(
|
||||
)
|
||||
{
|
||||
return gBS->InstallConfigurationTable (
|
||||
&gSevLaunchSecretGuid,
|
||||
&gConfidentialComputingSecretGuid,
|
||||
&mSecretDxeTable
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user