diff options
author | Dandan Bi <dandan.bi@intel.com> | 2017-10-19 15:30:23 +0800 |
---|---|---|
committer | Eric Dong <eric.dong@intel.com> | 2017-10-24 09:14:16 +0800 |
commit | 2f909679b01702bef49087304712b0391ce8fe02 (patch) | |
tree | e4823212243fe52dcb234094fc13a6687d4c66bf /IntelFrameworkModulePkg | |
parent | d8e36289cef7bde628b023219cd65fa8e8d4562a (diff) | |
download | edk2-2f909679b01702bef49087304712b0391ce8fe02.tar.gz |
IntelFrameworkModulePkg/Csm: Refine coding style in comments
Make the comments follow Edk2 coding style:
1. Make the comments starts with /** and end with **/.
2. Make the comments descrition end with '.'
Cc: Jian J Wang <jian.j.wang@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.1
Signed-off-by: Dandan Bi <dandan.bi@intel.com>
Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'IntelFrameworkModulePkg')
3 files changed, 12 insertions, 12 deletions
diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c index d2224a20aa..ebf03d30c1 100644 --- a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c +++ b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c @@ -1733,8 +1733,8 @@ CheckKeyboardConnect ( }
/**
- Disable NULL pointer detection
-*/
+ Disable NULL pointer detection.
+**/
VOID
DisableNullDetection (
VOID
@@ -1780,8 +1780,8 @@ DisableNullDetection ( }
/**
- Enable NULL pointer detection
-*/
+ Enable NULL pointer detection.
+**/
VOID
EnableNullDetection (
VOID
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c index 3176a989f6..e009999fbd 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c @@ -794,8 +794,8 @@ ToggleEndOfDxeStatus ( //
/**
- Enable NULL pointer detection
-*/
+ Enable NULL pointer detection.
+**/
VOID
EnableNullDetection (
VOID
@@ -844,8 +844,8 @@ EnableNullDetection ( }
/**
- Disable NULL pointer detection
-*/
+ Disable NULL pointer detection.
+**/
VOID
DisableNullDetection (
VOID
diff --git a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h index 20dfef3fec..86a3b09080 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h @@ -1545,16 +1545,16 @@ LegacyBiosInstallVgaRom ( );
/**
- Enable NULL pointer detection
-*/
+ Enable NULL pointer detection.
+**/
VOID
EnableNullDetection (
VOID
);
/**
- Disable NULL pointer detection
-*/
+ Disable NULL pointer detection.
+**/
VOID
DisableNullDetection (
VOID
|