From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mx.groups.io with SMTP id smtpd.web08.2874.1665713648669563708 for ; Thu, 13 Oct 2022 19:14:08 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="unable to parse pub key" header.i=@intel.com header.s=intel header.b=e/OBCOjv; spf=pass (domain: intel.com, ip: 192.55.52.151, mailfrom: stevex.li@intel.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665713648; x=1697249648; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=S3UlFMV5WtldsW18rPIwaPjERpy3O0lfS3QnV19Mb7s=; b=e/OBCOjvwLRla5twLmf6BmcEOryyYr4Vzxjexqjj7W8eO/VOC1/d4akn JprJhBV8K+7NqFv9OvmRu5kImW7iA9irkzZMPrBvA1m9gAFmPfZtFLz/A AcqvXpU3FxCGsPJ/+Y9WSNrP27hsUfJMsg79R3Yiv/vjZrPhXXu0iYQSm GppX/SrjZvVWrt8pCxqO8X7guzp2UJboqTeJL1pDE9LncwcIGJk7DyYlL Zj2hhNeA+UWIL5FL1FS/BsMsWJmc6E9cN4LpCsXS97h6uXzasPtwRYo3K F+kyOIWMB29PuL+bYYxDGkeYBKdCWlkXKfZ5HrwCGSIennKQCFsJmqjHn w==; X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="285643454" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="285643454" Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Oct 2022 19:14:08 -0700 X-IronPort-AV: E=McAfee;i="6500,9779,10499"; a="802464825" X-IronPort-AV: E=Sophos;i="5.95,182,1661842800"; d="scan'208";a="802464825" Received: from liwangyx-mobl.gar.corp.intel.com ([10.225.40.101]) by orsmga005-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 13 Oct 2022 19:14:06 -0700 From: "SteveX Li" To: devel@edk2.groups.io Cc: SteveX Li , Leif Lindholm , Ard Biesheuvel , Abner Chang , Daniel Schaefer Subject: [PATCH] Pkg-Module: Remove Non-ASCII Characters Date: Fri, 14 Oct 2022 10:13:28 +0800 Message-Id: X-Mailer: git-send-email 2.31.1.windows.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It would cause compiler error. Signed-off-by: SteveX Li Cc: Leif Lindholm Cc: Ard Biesheuvel Cc: Abner Chang Cc: Daniel Schaefer --- EmbeddedPkg/GdbStub/GdbStubInternal.h | 32 ++++++++++++------------ EmbeddedPkg/Include/Protocol/UsbDevice.h | 2 +- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/EmbeddedPkg/GdbStub/GdbStubInternal.h b/EmbeddedPkg/GdbStub/GdbStubInternal.h index 9c3929c812..5eaff61d83 100644 --- a/EmbeddedPkg/GdbStub/GdbStubInternal.h +++ b/EmbeddedPkg/GdbStub/GdbStubInternal.h @@ -322,7 +322,7 @@ SendNotSupported ( VOID ); -/** ‘p n’ +/** 'p n' Reads the n-th register's value into an output buffer and sends it as a packet @param SystemContext Register content at time of the exception @param InBuffer This is the input buffer received from gdb server @@ -333,7 +333,7 @@ ReadNthRegister ( IN CHAR8 *InBuffer ); -/** ‘g’ +/** 'g' Reads the general registers into an output buffer and sends it as a packet @param SystemContext Register content at time of the exception **/ @@ -343,7 +343,7 @@ ReadGeneralRegisters ( IN EFI_SYSTEM_CONTEXT SystemContext ); -/** ‘P n...=r...’ +/** 'P n...=r...' Writes the new value of n-th register received into the input buffer to the n-th register @param SystemContext Register content at time of the exception @param InBuffer This is the input buffer received from gdb server @@ -355,7 +355,7 @@ WriteNthRegister ( IN CHAR8 *InBuffer ); -/** ‘G XX...’ +/** 'G XX...' Writes the new values received into the input buffer to the general registers @param SystemContext Register content at time of the exception @param InBuffer Pointer to the input buffer received from gdb server @@ -368,7 +368,7 @@ WriteGeneralRegisters ( IN CHAR8 *InBuffer ); -/** ‘m addr,length ’ +/** 'm addr,length ' Find the Length of the area to read and the start address. Finally, pass them to another function, TransferFromMemToOutBufAndSend, that will read from that memory space and send it as a packet. @@ -381,7 +381,7 @@ ReadFromMemory ( IN CHAR8 *PacketData ); -/** ‘M addr,length :XX...’ +/** 'M addr,length :XX...' Find the Length of the area in bytes to write and the start address. Finally, pass them to another function, TransferFromInBufToMem, that will write to that memory space the info in the input buffer. @@ -394,7 +394,7 @@ WriteToMemory ( IN CHAR8 *PacketData ); -/** ‘c [addr ]’ +/** 'c [addr ]' Continue. addr is Address to resume. If addr is omitted, resume at current Address. @@ -409,7 +409,7 @@ ContinueAtAddress ( IN CHAR8 *PacketData ); -/** ‘s [addr ]’ +/** 's [addr ]' Single step. addr is the Address at which to resume. If addr is omitted, resume at same Address. @@ -444,10 +444,10 @@ RemoveSingleStep ( ); /** - ‘Z1, [addr], [length]’ - ‘Z2, [addr], [length]’ - ‘Z3, [addr], [length]’ - ‘Z4, [addr], [length]’ + 'Z1, [addr], [length]' + 'Z2, [addr], [length]' + 'Z3, [addr], [length]' + 'Z4, [addr], [length]' Insert hardware breakpoint/watchpoint at address addr of size length @@ -463,10 +463,10 @@ InsertBreakPoint ( ); /** - ‘z1, [addr], [length]’ - ‘z2, [addr], [length]’ - ‘z3, [addr], [length]’ - ‘z4, [addr], [length]’ + 'z1, [addr], [length]' + 'z2, [addr], [length]' + 'z3, [addr], [length]' + 'z4, [addr], [length]' Remove hardware breakpoint/watchpoint at address addr of size length diff --git a/EmbeddedPkg/Include/Protocol/UsbDevice.h b/EmbeddedPkg/Include/Protocol/UsbDevice.h index b299ee10a7..b07f459afa 100644 --- a/EmbeddedPkg/Include/Protocol/UsbDevice.h +++ b/EmbeddedPkg/Include/Protocol/UsbDevice.h @@ -83,7 +83,7 @@ EFI_STATUS first interface descriptor. If there are additional interfaces, their interface descriptor and endpoint descriptors follow the - first interface’s endpoint descriptors". + first interface's endpoint descriptors". The size of each buffer is the TotalLength member of the Configuration Descriptor. -- 2.31.1.windows.1