From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.31; helo=mga06.intel.com; envelope-from=dandan.bi@intel.com; receiver=edk2-devel@lists.01.org Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id CFEE5202E6114 for ; Thu, 19 Oct 2017 17:56:37 -0700 (PDT) Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga104.jf.intel.com with ESMTP; 19 Oct 2017 18:00:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,404,1503385200"; d="scan'208";a="911740650" Received: from shwdeopenpsi114.ccr.corp.intel.com ([10.239.157.135]) by FMSMGA003.fm.intel.com with ESMTP; 19 Oct 2017 18:00:15 -0700 From: Dandan Bi To: edk2-devel@lists.01.org Cc: Jian J Wang , Liming Gao Date: Fri, 20 Oct 2017 08:59:50 +0800 Message-Id: <1508461193-5204-2-git-send-email-dandan.bi@intel.com> X-Mailer: git-send-email 1.9.5.msysgit.1 In-Reply-To: <1508461193-5204-1-git-send-email-dandan.bi@intel.com> References: <1508461193-5204-1-git-send-email-dandan.bi@intel.com> Subject: [patch 1/4] IntelFrameworkModulePkg/Csm: Refine coding style in comments X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Oct 2017 00:56:38 -0000 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 Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Dandan Bi --- IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c | 8 ++++---- IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c | 8 ++++---- IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c index d2224a2..ebf03d3 100644 --- a/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c +++ b/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/BiosKeyboard.c @@ -1731,12 +1731,12 @@ CheckKeyboardConnect ( return TRUE; } } /** - Disable NULL pointer detection -*/ + Disable NULL pointer detection. +**/ VOID DisableNullDetection ( VOID ) { @@ -1778,12 +1778,12 @@ DisableNullDetection ( DEBUG ((DEBUG_WARN, "!!! Page 0 is supposed to be disabled !!!\r\n")); } } /** - 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 3176a98..e009999 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBios.c @@ -792,12 +792,12 @@ ToggleEndOfDxeStatus ( // functions can be used to disable/enable NULL pointer detection before/after // accessing those memory. // /** - Enable NULL pointer detection -*/ + Enable NULL pointer detection. +**/ VOID EnableNullDetection ( VOID ) { @@ -842,12 +842,12 @@ EnableNullDetection ( ASSERT_EFI_ERROR (Status); } } /** - 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 20dfef3..86a3b09 100644 --- a/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h +++ b/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/LegacyBiosInterface.h @@ -1543,20 +1543,20 @@ EFI_STATUS LegacyBiosInstallVgaRom ( IN LEGACY_BIOS_INSTANCE *Private ); /** - Enable NULL pointer detection -*/ + Enable NULL pointer detection. +**/ VOID EnableNullDetection ( VOID ); /** - Disable NULL pointer detection -*/ + Disable NULL pointer detection. +**/ VOID DisableNullDetection ( VOID ); -- 1.9.5.msysgit.1