From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.120]) by mx.groups.io with SMTP id smtpd.web10.7117.1581041546835456213 for ; Thu, 06 Feb 2020 18:12:27 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=UCVjTyer; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581041546; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=ybM6yUQHBHf5/Klmd8Ha3yGX7t+vD10Oih27WsQ91V4=; b=UCVjTyerVXzlVN1PqEtbrCMX37Sh/COGMxtjwixoaZzP7BC32W0W3HHcdZkjQZ0lUA1P1Y YqFaI93nd3ENf/QBaxg7UMJcNC5YHhRSZB/4UcxhUJbf2Ut3FYmusNgbvfZ6JpEoR9UGnT wNOHPyfVaqot8UJ0E68DsesMx0PhPgk= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-75-sYzwmcmVMs6VoXgoQnWDbg-1; Thu, 06 Feb 2020 21:12:21 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1F9748010CB; Fri, 7 Feb 2020 02:12:20 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-120.brq.redhat.com [10.40.204.120]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 101C360BEC; Fri, 7 Feb 2020 02:12:18 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 73/78] SourceLevelDebugPkg: Fix few typos Date: Fri, 7 Feb 2020 02:08:26 +0100 Message-Id: <20200207010831.9046-74-philmd@redhat.com> In-Reply-To: <20200207010831.9046-1-philmd@redhat.com> References: <20200207010831.9046-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: sYzwmcmVMs6VoXgoQnWDbg-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Correctly write 'definitions' in comments and documentation. Cc: Hao A Wu Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Hao A Wu Signed-off-by: Philippe Mathieu-Daude --- SourceLevelDebugPkg/Include/Ia32/ProcessorContext.h | 2 +- SourceLevelDebugPkg/Include/TransferProtocol.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/SourceLevelDebugPkg/Include/Ia32/ProcessorContext.h b/SourceLe= velDebugPkg/Include/Ia32/ProcessorContext.h index 71f596f285bd..2c5cf03cec90 100644 --- a/SourceLevelDebugPkg/Include/Ia32/ProcessorContext.h +++ b/SourceLevelDebugPkg/Include/Ia32/ProcessorContext.h @@ -1,5 +1,5 @@ /** @file - IA32/x64 architecture specific defintions needed by debug transfer proto= col.It is only + IA32/x64 architecture specific definitions needed by debug transfer prot= ocol.It is only intended to be used by Debug related module implementation. =20 Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.
diff --git a/SourceLevelDebugPkg/Include/TransferProtocol.h b/SourceLevelDe= bugPkg/Include/TransferProtocol.h index 3904ba27dcb8..154e74165e8d 100644 --- a/SourceLevelDebugPkg/Include/TransferProtocol.h +++ b/SourceLevelDebugPkg/Include/TransferProtocol.h @@ -1,5 +1,5 @@ /** @file - Transfer protocol defintions used by debug agent and host. It is only + Transfer protocol definitions used by debug agent and host. It is only intended to be used by Debug related module implementation. =20 Copyright (c) 2010 - 2017, Intel Corporation. All rights reserved.
@@ -140,7 +140,7 @@ typedef struct { UINT64 StopAddress; } DEBUG_DATA_RESPONSE_BREAK_CAUSE; // -// Break type defintions for DEBUG_DATA_BREAK_CAUSE +// Break type definitions for DEBUG_DATA_BREAK_CAUSE // #define DEBUG_DATA_BREAK_CAUSE_UNKNOWN 0 #define DEBUG_DATA_BREAK_CAUSE_HW_BREAKPOINT 1 @@ -160,7 +160,7 @@ typedef struct { UINT8 CpuMode; } DEBUG_DATA_RESPONSE_ARCH_MODE; // -// Cpu architecture defintions for DEBUG_DATA_RESPONSE_ARCH_MODE +// Cpu architecture definitions for DEBUG_DATA_RESPONSE_ARCH_MODE // #define DEBUG_DATA_BREAK_CPU_ARCH_IA16 0 #define DEBUG_DATA_BREAK_CPU_ARCH_IA32 1 --=20 2.21.1