mirror of https://github.com/acidanthera/audk.git
MdeModulePkg: Fix coding style issues
REF: https://bugzilla.tianocore.org/show_bug.cgi?id=1479 Fix issues that reported by Edk2 coding style check tool(ECC) that: Comment description should end with period '.' Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Jian J Wang <jian.j.wang@intel.com> Cc: Hao Wu <hao.a.wu@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Dandan Bi <dandan.bi@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> Acked-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
This commit is contained in:
parent
e98212cb5d
commit
44289eeafd
|
@ -78,7 +78,7 @@ typedef struct {
|
||||||
} SMM_FTW_GET_LAST_WRITE_HEADER;
|
} SMM_FTW_GET_LAST_WRITE_HEADER;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Shared entry point of the module
|
Shared entry point of the module.
|
||||||
|
|
||||||
@retval EFI_SUCCESS The initialization finished successfully.
|
@retval EFI_SUCCESS The initialization finished successfully.
|
||||||
@retval EFI_OUT_OF_RESOURCES Allocate memory error
|
@retval EFI_OUT_OF_RESOURCES Allocate memory error
|
||||||
|
@ -109,7 +109,7 @@ FtwSmmIsBufferOutsideSmmValid (
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM FTW driver is ready
|
Notify the system that the SMM FTW driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
FtwNotifySmmReady (
|
FtwNotifySmmReady (
|
||||||
|
|
|
@ -65,7 +65,7 @@ FtwCalculateCrc32 (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM FTW driver is ready
|
Notify the system that the SMM FTW driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
FtwNotifySmmReady (
|
FtwNotifySmmReady (
|
||||||
|
|
|
@ -72,7 +72,7 @@ FtwCalculateCrc32 (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM FTW driver is ready
|
Notify the system that the SMM FTW driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
FtwNotifySmmReady (
|
FtwNotifySmmReady (
|
||||||
|
|
|
@ -98,7 +98,7 @@ VariableSpeculationBarrier (
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable driver is ready
|
Notify the system that the SMM variable driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmReady (
|
VariableNotifySmmReady (
|
||||||
|
@ -106,7 +106,7 @@ VariableNotifySmmReady (
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable write driver is ready
|
Notify the system that the SMM variable write driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmWriteReady (
|
VariableNotifySmmWriteReady (
|
||||||
|
|
|
@ -38,7 +38,7 @@ VariableSmmIsBufferOutsideSmmValid (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable driver is ready
|
Notify the system that the SMM variable driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmReady (
|
VariableNotifySmmReady (
|
||||||
|
@ -48,7 +48,7 @@ VariableNotifySmmReady (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable write driver is ready
|
Notify the system that the SMM variable write driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmWriteReady (
|
VariableNotifySmmWriteReady (
|
||||||
|
@ -58,7 +58,7 @@ VariableNotifySmmWriteReady (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Variable service MM driver entry point
|
Variable service MM driver entry point.
|
||||||
|
|
||||||
@param[in] ImageHandle A handle for the image that is initializing this
|
@param[in] ImageHandle A handle for the image that is initializing this
|
||||||
driver
|
driver
|
||||||
|
|
|
@ -40,7 +40,7 @@ VariableSmmIsBufferOutsideSmmValid (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable driver is ready
|
Notify the system that the SMM variable driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmReady (
|
VariableNotifySmmReady (
|
||||||
|
@ -61,7 +61,7 @@ VariableNotifySmmReady (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Notify the system that the SMM variable write driver is ready
|
Notify the system that the SMM variable write driver is ready.
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
VariableNotifySmmWriteReady (
|
VariableNotifySmmWriteReady (
|
||||||
|
|
Loading…
Reference in New Issue