From nobody Sun May 5 15:03:50 2024 Delivered-To: importer@patchew.org Authentication-Results: mx.zohomail.com; spf=none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) smtp.mailfrom=edk2-devel-bounces@lists.01.org Return-Path: Received: from ml01.01.org (ml01.01.org [198.145.21.10]) by mx.zohomail.com with SMTPS id 151791972204949.87744854829259; Tue, 6 Feb 2018 04:22:02 -0800 (PST) Received: from [127.0.0.1] (localhost [IPv6:::1]) by ml01.01.org (Postfix) with ESMTP id 3F023223972BF; Tue, 6 Feb 2018 04:16:17 -0800 (PST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) (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 5BCB2223972AD for ; Tue, 6 Feb 2018 04:16:15 -0800 (PST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Feb 2018 04:21:57 -0800 Received: from shwdeopenpsi068.ccr.corp.intel.com ([10.239.158.46]) by fmsmga001.fm.intel.com with ESMTP; 06 Feb 2018 04:21:56 -0800 X-Original-To: edk2-devel@lists.01.org Received-SPF: none (zoho.com: 198.145.21.10 is neither permitted nor denied by domain of lists.01.org) client-ip=198.145.21.10; envelope-from=edk2-devel-bounces@lists.01.org; helo=ml01.01.org; Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=134.134.136.24; helo=mga09.intel.com; envelope-from=star.zeng@intel.com; receiver=edk2-devel@lists.01.org X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,468,1511856000"; d="scan'208";a="28505226" From: Star Zeng To: edk2-devel@lists.01.org Date: Tue, 6 Feb 2018 20:21:55 +0800 Message-Id: <1517919715-14520-1-git-send-email-star.zeng@intel.com> X-Mailer: git-send-email 2.7.0.windows.1 Subject: [edk2] [PATCH] SourceLevelDebugPkg DebugUsb3: Fix some typos X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Ruiyu Ni , Hao Wu , Star Zeng MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Errors-To: edk2-devel-bounces@lists.01.org Sender: "edk2-devel" X-ZohoMail: RSF_4 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Cc: Ruiyu Ni Cc: Hao Wu Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng Reviewed-by: Hao Wu --- SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h | 8 ++++= ---- .../DebugCommunicationLibUsb3/DebugCommunicationLibUsb3Common.c | 8 ++++= ---- SourceLevelDebugPkg/SourceLevelDebugPkg.dec | 4 ++-- SourceLevelDebugPkg/SourceLevelDebugPkg.uni | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h b/= SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h index b2042841d28e..b37e032db09b 100644 --- a/SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h +++ b/SourceLevelDebugPkg/Include/Library/DebugCommunicationLib.h @@ -1,7 +1,7 @@ /** @file Debug Communication Library definitions. =20 - Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.
+ Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BS= D License which accompanies this distribution. The full text of the license may b= e found at @@ -88,7 +88,7 @@ DebugPortInitialize ( @param Handle Debug port handle. @param Buffer Pointer to the data buffer to store the data re= ad from the debug device. @param NumberOfBytes Number of bytes which will be read. - @param Timeout Timeout value for reading from debug device. It= unit is Microsecond. + @param Timeout Timeout value for reading from debug device. It= s unit is Microsecond. =20 @retval 0 Read data failed, no data is to be read. @retval >0 Actual number of bytes read from debug device. @@ -118,7 +118,7 @@ DebugPortReadBuffer ( =20 @retval 0 NumberOfBytes is 0. @retval >0 The number of bytes written to the debug device. - If this value is less than NumberOfBytes, then = the read operation failed. + If this value is less than NumberOfBytes, then = the write operation failed. =20 **/ UINTN @@ -139,7 +139,7 @@ DebugPortWriteBuffer ( @param Handle Debug port handle. =20 @retval TRUE Data is waiting to be read from the debug devic= e. - @retval FALSE There is no data waiting to be read from the se= rial device. + @retval FALSE There is no data waiting to be read from the de= bug device. =20 **/ BOOLEAN diff --git a/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCom= municationLibUsb3Common.c b/SourceLevelDebugPkg/Library/DebugCommunicationL= ibUsb3/DebugCommunicationLibUsb3Common.c index 04e25e3ec2cf..49bad6b5864d 100644 --- a/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicat= ionLibUsb3Common.c +++ b/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/DebugCommunicat= ionLibUsb3Common.c @@ -1,7 +1,7 @@ /** @file Debug Port Library implementation based on usb3 debug port. =20 - Copyright (c) 2014 - 2015, Intel Corporation. All rights reserved.
+ Copyright (c) 2014 - 2018, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BS= D License which accompanies this distribution. The full text of the license may b= e found at @@ -756,7 +756,7 @@ Enable: @param Handle Debug port handle. @param Buffer Pointer to the data buffer to store the data re= ad from the debug device. @param NumberOfBytes Number of bytes which will be read. - @param Timeout Timeout value for reading from debug device. It= unit is Microsecond. + @param Timeout Timeout value for reading from debug device. It= s unit is Microsecond. =20 @retval 0 Read data failed, no data is to be read. @retval >0 Actual number of bytes read from debug device. @@ -836,7 +836,7 @@ DebugPortReadBuffer ( =20 @retval 0 NumberOfBytes is 0. @retval >0 The number of bytes written to the debug device. - If this value is less than NumberOfBytes, then = the read operation failed. + If this value is less than NumberOfBytes, then = the write operation failed. =20 **/ UINTN @@ -919,7 +919,7 @@ DebugPortWriteBuffer ( @param Handle Debug port handle. =20 @retval TRUE Data is waiting to be read from the debug devic= e. - @retval FALSE There is no data waiting to be read from the se= rial device. + @retval FALSE There is no data waiting to be read from the de= bug device. =20 **/ BOOLEAN diff --git a/SourceLevelDebugPkg/SourceLevelDebugPkg.dec b/SourceLevelDebug= Pkg/SourceLevelDebugPkg.dec index c9a47f625526..b89e9c6ad601 100644 --- a/SourceLevelDebugPkg/SourceLevelDebugPkg.dec +++ b/SourceLevelDebugPkg/SourceLevelDebugPkg.dec @@ -6,7 +6,7 @@ # and host, PeCoffExtraActionLib instance to report symbol path informatio= n, # etc. # -# Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
+# Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
# This program and the accompanying materials are licensed and made availa= ble under=20 # the terms and conditions of the BSD License that accompanies this distri= bution. =20 # The full text of the license may be found at @@ -92,7 +92,7 @@ [PcdsFixedAtBuild, PcdsPatchableInModule] =20 ## The memory BAR of xhci host controller, in which usb debug feature is= enabled. ## Note that the memory BAR address is only used before Pci bus resource= allocation. - # @Prompt Configure ehci host controller memory BAR. + # @Prompt Configure xhci host controller memory BAR. gEfiSourceLevelDebugPkgTokenSpaceGuid.PcdUsbXhciMemorySpaceBase|0xD00000= 00|UINT64|0x00000007 =20 ## The pci address of xhci host controller, in which usb debug feature i= s enabled. diff --git a/SourceLevelDebugPkg/SourceLevelDebugPkg.uni b/SourceLevelDebug= Pkg/SourceLevelDebugPkg.uni index 781b717e4e24..8a201652274b 100644 --- a/SourceLevelDebugPkg/SourceLevelDebugPkg.uni +++ b/SourceLevelDebugPkg/SourceLevelDebugPkg.uni @@ -8,7 +8,7 @@ // and host, PeCoffExtraActionLib instance to report symbol path informati= on, // etc. // -// Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
+// Copyright (c) 2010 - 2018, Intel Corporation. All rights reserved.
// // This program and the accompanying materials are licensed and made avail= able under // the terms and conditions of the BSD License that accompanies this distr= ibution. @@ -70,7 +70,7 @@ #string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdDebugPortHandleBuffer= Size_HELP #language en-US "The data buffer size used by debug port in debu= g communication library instances.\n" = "Its value is not suggested to be changed in pla= tform DSC file." =20 -#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciMemorySpaceBas= e_PROMPT #language en-US "Configure ehci host controller memory BAR." +#string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciMemorySpaceBas= e_PROMPT #language en-US "Configure xhci host controller memory BAR." =20 #string STR_gEfiSourceLevelDebugPkgTokenSpaceGuid_PcdUsbXhciMemorySpaceBas= e_HELP #language en-US "The memory BAR of xhci host controller, in which u= sb debug feature is enabled.\n" = "Note that the memory BAR address is only used befo= re Pci bus resource allocation." --=20 2.7.0.windows.1 _______________________________________________ edk2-devel mailing list edk2-devel@lists.01.org https://lists.01.org/mailman/listinfo/edk2-devel