From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.81]) by mx.groups.io with SMTP id smtpd.web09.6853.1581039626132297656 for ; Thu, 06 Feb 2020 17:40:26 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=MIDH+3y4; spf=pass (domain: redhat.com, ip: 207.211.31.81, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1581039625; 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=Ocf6OmOuJ262UP38SS0ag3BdNDsloR3gOcLP37b//d0=; b=MIDH+3y4338gwj62mU/gIaN6CR7SqydMspj32fW4Eji/MYssh2hHwiQa4XCRI/NnpQOZlh 5eCvXXloswiPSjDnYN+GlP0x0pFhicBL+0/IBV5OJsF/wquDiuuNatXG7ipJSyPioVsEbB 78ChW7xcPIAS/zt5NZ7zYGv7feRzc/E= 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-191-0dqz6oJKNaKW_uJPN5SGnA-1; Thu, 06 Feb 2020 20:40:23 -0500 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 158C7101FC60; Fri, 7 Feb 2020 01:40:22 +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 C4DCC5C241; Fri, 7 Feb 2020 01:40:20 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Laszlo Ersek , Eric Dong Subject: [PATCH v3 35/78] NetworkPkg/DpcDxe: Fix few typos Date: Fri, 7 Feb 2020 02:07:48 +0100 Message-Id: <20200207010831.9046-36-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.16 X-MC-Unique: 0dqz6oJKNaKW_uJPN5SGnA-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 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 @@ Module Name: #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.1