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.2115.1578044438219016981 for ; Fri, 03 Jan 2020 01:40:38 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=QaFf4/fz; 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=1578044437; 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=8+Y1loFbjZd/eovyFb7YwvGaOcZYIpG7PSuhiIP8Ddo=; b=QaFf4/fz0+Tp83hAz1YrKUmevH4gzjDc1TKlKCRujeIXTc2MCsJ1vgLf9jFH1f/jnlK0QM YK8aGGj73qgbMQ6W/FEpvMWMYtmcWu73fehFwa+v68fKR/zXOrr0HTD5ddUqKRWuJXQjPP kfAHKDi4KghTrd4DvD31lf+BhKmdZNo= 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-247-VCQaQZr6OfS7-LwxeX6V9A-1; Fri, 03 Jan 2020 04:40:35 -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 BF365107B087; Fri, 3 Jan 2020 09:40:33 +0000 (UTC) Received: from x1w.redhat.com (ovpn-116-190.ams2.redhat.com [10.36.116.190]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7A44360BF7; Fri, 3 Jan 2020 09:40:29 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Antoine Coeur , Jiaxin Wu , Siyuan Fu , Maciej Rabeda , Philippe Mathieu-Daude Subject: [PATCH v2 35/78] NetworkPkg/DpcDxe: Fix few typos Date: Fri, 3 Jan 2020 10:07:29 +0100 Message-Id: <20200103090812.10592-36-philmd@redhat.com> In-Reply-To: <20200103090812.10592-1-philmd@redhat.com> References: <20200103090812.10592-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: VCQaQZr6OfS7-LwxeX6V9A-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable From: Antoine Coeur Fix few typos in comments and documentation. Cc: Jiaxin Wu Cc: Siyuan Fu Cc: Maciej Rabeda Signed-off-by: Antoine Coeur Reviewed-by: Philippe Mathieu-Daude Reviewed-by: Maciej Rabeda Signed-off-by: Philippe Mathieu-Daude --- NetworkPkg/DpcDxe/Dpc.h | 2 +- NetworkPkg/Include/Protocol/Dpc.h | 2 +- NetworkPkg/DpcDxe/Dpc.c | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/NetworkPkg/DpcDxe/Dpc.h b/NetworkPkg/DpcDxe/Dpc.h index 2017a215e352..a5e6f7b62f90 100644 --- a/NetworkPkg/DpcDxe/Dpc.h +++ b/NetworkPkg/DpcDxe/Dpc.h @@ -24,7 +24,7 @@ Abstract: #include =20 // -// Internal data struture for managing DPCs. A DPC entry is either on the= free +// Internal data structure for managing DPCs. A DPC entry is either on th= e free // list or on a DPC queue at a specific EFI_TPL. // typedef struct { diff --git a/NetworkPkg/Include/Protocol/Dpc.h b/NetworkPkg/Include/Protoco= l/Dpc.h index 1e1d0d316d54..5e50f6cf308c 100644 --- a/NetworkPkg/Include/Protocol/Dpc.h +++ b/NetworkPkg/Include/Protocol/Dpc.h @@ -20,7 +20,7 @@ SPDX-License-Identifier: BSD-2-Clause-Patent } =20 // -// Forward reference for pure ANSI compatability +// Forward reference for pure ANSI compatibility // typedef struct _EFI_DPC_PROTOCOL EFI_DPC_PROTOCOL; =20 diff --git a/NetworkPkg/DpcDxe/Dpc.c b/NetworkPkg/DpcDxe/Dpc.c index 8a490949dc8c..7c85dd8757c3 100644 --- a/NetworkPkg/DpcDxe/Dpc.c +++ b/NetworkPkg/DpcDxe/Dpc.c @@ -28,7 +28,7 @@ EFI_DPC_PROTOCOL mDpc =3D { }; =20 // -// Global variables used to meaasure the DPC Queue Depths +// Global variables used to measure the DPC Queue Depths // UINTN mDpcQueueDepth =3D 0; UINTN mMaxDpcQueueDepth =3D 0; @@ -42,7 +42,7 @@ UINTN mMaxDpcQueueDepth =3D 0; LIST_ENTRY mDpcEntryFreeList =3D INITIALIZE_LIST_HEAD_VARIABLE(mDpcEn= tryFreeList); =20 // -// An array of DPC queues. A DPC queue is allocated for every leval EFI_T= PL value. +// An array of DPC queues. A DPC queue is allocated for every level EFI_T= PL value. // As DPCs are queued, they are added to the end of the linked list. // As DPCs are dispatched, they are removed from the beginning of the link= ed list. // @@ -299,7 +299,7 @@ DpcDispatchDpc ( @param ImageHandle The image handle of the driver. @param SystemTable The system table. =20 - @retval EFI_SUCCES The DPC queues were initialized and the E= FI_DPC_PROTOCOL was + @retval EFI_SUCCESS The DPC queues were initialized and the E= FI_DPC_PROTOCOL was installed onto a new handle. @retval Others Failed to install EFI_DPC_PROTOCOL. =20 --=20 2.21.0