mirror of https://github.com/acidanthera/audk.git
OvmfPkg/MemEncryptSevLib: clean up MemEncryptSevIsEnabled() decl
The declaration and the definition(s) of the function should have identical leading comments and/or identical parameter lists. Also remove any excess space in the comment block, and unindent the trailing "**/" if necessary. Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Brijesh Singh <brijesh.singh@amd.com> Cc: Jordan Justen <jordan.l.justen@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Tested-by: Brijesh Singh <brijesh.singh@amd.com> Reviewed-by: Brijesh Singh <brijesh.singh@amd.com>
This commit is contained in:
parent
4bd6bf317e
commit
d4dd22c7bc
|
@ -22,9 +22,9 @@
|
||||||
/**
|
/**
|
||||||
Returns a boolean to indicate whether SEV is enabled
|
Returns a boolean to indicate whether SEV is enabled
|
||||||
|
|
||||||
@retval TRUE SEV is active
|
@retval TRUE SEV is enabled
|
||||||
@retval FALSE SEV is not enabled
|
@retval FALSE SEV is not enabled
|
||||||
**/
|
**/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
EFIAPI
|
EFIAPI
|
||||||
MemEncryptSevIsEnabled (
|
MemEncryptSevIsEnabled (
|
||||||
|
|
|
@ -67,12 +67,11 @@ InternalMemEncryptSevIsEnabled (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
||||||
Returns a boolean to indicate whether SEV is enabled
|
Returns a boolean to indicate whether SEV is enabled
|
||||||
|
|
||||||
@retval TRUE SEV is enabled
|
@retval TRUE SEV is enabled
|
||||||
@retval FALSE SEV is not enabled
|
@retval FALSE SEV is not enabled
|
||||||
**/
|
**/
|
||||||
BOOLEAN
|
BOOLEAN
|
||||||
EFIAPI
|
EFIAPI
|
||||||
MemEncryptSevIsEnabled (
|
MemEncryptSevIsEnabled (
|
||||||
|
|
Loading…
Reference in New Issue