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.2293.1596309397704115982 for ; Sat, 01 Aug 2020 12:16:38 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=bgd2nNRF; spf=pass (domain: redhat.com, ip: 207.211.31.120, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1596309396; 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=D/a2YDXcKAcYTDc5s93af0IL8wr8wF5YbDZ7H434XeI=; b=bgd2nNRFBw8GvDsvfbBHLCHBcml0GHRMTZ6ZchHdBJlzYVKpnbwlInckDydQCSNeCR2Qxp /8LsBvk7mfSuwlgOMj2DIaSia6e9a+sMTo3MUypsBGmGUQrlketZHUkjsxPMBDzx8vh8rM 1Bz1burYjcqmW1XqufrNmIBc1xO3ato= 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-433-0uHuAOuKNHC00ZZjIBDAZw-1; Sat, 01 Aug 2020 15:16:14 -0400 X-MC-Unique: 0uHuAOuKNHC00ZZjIBDAZw-1 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 EFEE28017FB; Sat, 1 Aug 2020 19:16:12 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-112-28.ams2.redhat.com [10.36.112.28]) by smtp.corp.redhat.com (Postfix) with ESMTP id BF0B960FC2; Sat, 1 Aug 2020 19:16:10 +0000 (UTC) Subject: Re: [Patch] UefiCpuPkg/CpuCommonFeaturesLib: Fix spelling mistake To: Michael D Kinney , devel@edk2.groups.io Cc: Eric Dong , Ray Ni , Rahul Kumar References: <20200801002828.28684-1-michael.d.kinney@intel.com> From: "Laszlo Ersek" Message-ID: Date: Sat, 1 Aug 2020 21:16:09 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0 Thunderbird/52.9.1 MIME-Version: 1.0 In-Reply-To: <20200801002828.28684-1-michael.d.kinney@intel.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Language: en-US Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit On 08/01/20 02:28, Michael D Kinney wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2357 > > Cc: Eric Dong > Cc: Ray Ni > Cc: Laszlo Ersek > Cc: Rahul Kumar > Signed-off-by: Michael D Kinney > --- > UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c > index 844052b9a5..822126d355 100644 > --- a/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c > +++ b/UefiCpuPkg/Library/CpuCommonFeaturesLib/MachineCheck.c > @@ -287,7 +287,7 @@ LmceSupport ( > > McgCap.Uint64 = AsmReadMsr64 (MSR_IA32_MCG_CAP); > if (ProcessorNumber == 0) { > - DEBUG ((EFI_D_INFO, "LMCE eanble = %x\n", (BOOLEAN) (McgCap.Bits.MCG_LMCE_P != 0))); > + DEBUG ((EFI_D_INFO, "LMCE enable = %x\n", (BOOLEAN) (McgCap.Bits.MCG_LMCE_P != 0))); > } > return (BOOLEAN) (McgCap.Bits.MCG_LMCE_P != 0); > } > Reviewed-by: Laszlo Ersek