From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.120]) by mx.groups.io with SMTP id smtpd.web12.8428.1575389908630285146 for ; Tue, 03 Dec 2019 08:18:28 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=TV8lBiCb; spf=pass (domain: redhat.com, ip: 205.139.110.120, mailfrom: philmd@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1575389907; 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=PKPwKxinpp72xeNcbdBPSS2I2bu9JQYvYus6fFEPawQ=; b=TV8lBiCbXS0tM9nkGvqcZMDrZ4UApm11R4XdeFxrefEbtANtQZ20T5FWkAsHckfl4qmyAG Xf6Tv8pclTYfllamnAeuLtYkzQJ9Zcw2obbJnyOmIJO1H/7XN/MvyktbGOsQXukdXvusY1 1olxsYSW2Oxvpv53ttAerpTgFgLobpQ= 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-264-kKh77DKuNdWyeIbd6yMwSg-1; Tue, 03 Dec 2019 11:18:26 -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 C127F18AAFA2; Tue, 3 Dec 2019 16:18:24 +0000 (UTC) Received: from x1w.redhat.com (ovpn-204-86.brq.redhat.com [10.40.204.86]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 4640160C80; Tue, 3 Dec 2019 16:18:22 +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 37/79] NetworkPkg/DpcDxe: Fix few typos Date: Tue, 3 Dec 2019 17:15:20 +0100 Message-Id: <20191203161602.15969-38-philmd@redhat.com> In-Reply-To: <20191203161602.15969-1-philmd@redhat.com> References: <20191203161602.15969-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-MC-Unique: kKh77DKuNdWyeIbd6yMwSg-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 Reviewed-by: Philippe Mathieu-Daude 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