From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by mx.groups.io with SMTP id smtpd.web10.4179.1575466660395333216 for ; Wed, 04 Dec 2019 05:37:40 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: linux.intel.com, ip: 192.55.52.115, mailfrom: maciej.rabeda@linux.intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Dec 2019 05:37:39 -0800 X-IronPort-AV: E=Sophos;i="5.69,277,1571727600"; d="scan'208";a="201402307" Received: from mrabeda-mobl.ger.corp.intel.com (HELO [10.102.8.43]) ([10.102.8.43]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-SHA; 04 Dec 2019 05:37:37 -0800 Subject: Re: [edk2-devel] [PATCH 37/79] NetworkPkg/DpcDxe: Fix few typos To: devel@edk2.groups.io, philmd@redhat.com Cc: Antoine Coeur , Jiaxin Wu , Siyuan Fu , Maciej Rabeda References: <20191203161602.15969-1-philmd@redhat.com> <20191203161602.15969-38-philmd@redhat.com> From: "Maciej Rabeda" Message-ID: <9ad0cf20-c2c7-8c61-3294-9a2f3a2f0e4b@linux.intel.com> Date: Wed, 4 Dec 2019 14:37:36 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:68.0) Gecko/20100101 Thunderbird/68.2.2 MIME-Version: 1.0 In-Reply-To: <20191203161602.15969-38-philmd@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: pl Reviewed-by: Maciej Rabeda On 03-Dec-19 17:15, Philippe Mathieu-Daudé wrote: > 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 > > // > -// 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 the 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/Protocol/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 > } > > // > -// Forward reference for pure ANSI compatability > +// Forward reference for pure ANSI compatibility > // > typedef struct _EFI_DPC_PROTOCOL EFI_DPC_PROTOCOL; > > 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 = { > }; > > // > -// Global variables used to meaasure the DPC Queue Depths > +// Global variables used to measure the DPC Queue Depths > // > UINTN mDpcQueueDepth = 0; > UINTN mMaxDpcQueueDepth = 0; > @@ -42,7 +42,7 @@ UINTN mMaxDpcQueueDepth = 0; > LIST_ENTRY mDpcEntryFreeList = INITIALIZE_LIST_HEAD_VARIABLE(mDpcEntryFreeList); > > // > -// An array of DPC queues. A DPC queue is allocated for every leval EFI_TPL value. > +// An array of DPC queues. A DPC queue is allocated for every level EFI_TPL 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 linked list. > // > @@ -299,7 +299,7 @@ DpcDispatchDpc ( > @param ImageHandle The image handle of the driver. > @param SystemTable The system table. > > - @retval EFI_SUCCES The DPC queues were initialized and the EFI_DPC_PROTOCOL was > + @retval EFI_SUCCESS The DPC queues were initialized and the EFI_DPC_PROTOCOL was > installed onto a new handle. > @retval Others Failed to install EFI_DPC_PROTOCOL. >