From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mx.groups.io with SMTP id smtpd.web10.4371.1575467541329381269 for ; Wed, 04 Dec 2019 05:52:21 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: linux.intel.com, ip: 192.55.52.136, 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 fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 04 Dec 2019 05:52:20 -0800 X-IronPort-AV: E=Sophos;i="5.69,277,1571727600"; d="scan'208";a="201406417" 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:52:18 -0800 Subject: Re: [edk2-devel] [PATCH 38/79] NetworkPkg/HttpBootDxe: Fix a typo in variable name To: devel@edk2.groups.io, philmd@redhat.com Cc: =?UTF-8?Q?Antoine_C=c5=93ur?= , Jiaxin Wu , Siyuan Fu , Maciej Rabeda References: <20191203161602.15969-1-philmd@redhat.com> <20191203161602.15969-39-philmd@redhat.com> From: "Maciej Rabeda" Message-ID: <30c9c396-b03f-ef6b-b641-da29d1b2033c@linux.intel.com> Date: Wed, 4 Dec 2019 14:52:16 +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-39-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: > Correctly write 'Initialized'. > > Cc: Jiaxin Wu > Cc: Siyuan Fu > Cc: Maciej Rabeda > Signed-off-by: Philippe Mathieu-Daude > --- > NetworkPkg/HttpBootDxe/HttpBootConfig.h | 2 +- > NetworkPkg/HttpBootDxe/HttpBootConfig.c | 4 ++-- > 2 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/NetworkPkg/HttpBootDxe/HttpBootConfig.h b/NetworkPkg/HttpBootDxe/HttpBootConfig.h > index ce2116e248b5..84eab425b04f 100644 > --- a/NetworkPkg/HttpBootDxe/HttpBootConfig.h > +++ b/NetworkPkg/HttpBootDxe/HttpBootConfig.h > @@ -32,7 +32,7 @@ extern UINT8 HttpBootConfigVfrBin[]; > > struct _HTTP_BOOT_FORM_CALLBACK_INFO { > UINT32 Signature; > - BOOLEAN Initilized; > + BOOLEAN Initialized; > EFI_HANDLE ChildHandle; > EFI_DEVICE_PATH_PROTOCOL *HiiVendorDevicePath; > EFI_HII_HANDLE RegisteredHandle; > diff --git a/NetworkPkg/HttpBootDxe/HttpBootConfig.c b/NetworkPkg/HttpBootDxe/HttpBootConfig.c > index 245bd49a621a..646c907b1215 100644 > --- a/NetworkPkg/HttpBootDxe/HttpBootConfig.c > +++ b/NetworkPkg/HttpBootDxe/HttpBootConfig.c > @@ -552,7 +552,7 @@ HttpBootConfigFormInit ( > > CallbackInfo = &Private->CallbackInfo; > > - if (CallbackInfo->Initilized) { > + if (CallbackInfo->Initialized) { > return EFI_SUCCESS; > } > > @@ -632,7 +632,7 @@ HttpBootConfigFormInit ( > FreePool (MacString); > FreePool (OldMenuString); > > - CallbackInfo->Initilized = TRUE; > + CallbackInfo->Initialized = TRUE; > return EFI_SUCCESS; > } >