From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mx.groups.io with SMTP id smtpd.web10.3956.1573517772245521325 for ; Mon, 11 Nov 2019 16:16:12 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 134.134.136.100, mailfrom: liming.gao@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Nov 2019 16:16:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,294,1569308400"; d="scan'208";a="202486746" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga007.fm.intel.com with ESMTP; 11 Nov 2019 16:16:10 -0800 Received: from fmsmsx609.amr.corp.intel.com (10.18.126.89) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 11 Nov 2019 16:16:10 -0800 Received: from fmsmsx609.amr.corp.intel.com (10.18.126.89) by fmsmsx609.amr.corp.intel.com (10.18.126.89) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Mon, 11 Nov 2019 16:16:10 -0800 Received: from shsmsx106.ccr.corp.intel.com (10.239.4.159) by fmsmsx609.amr.corp.intel.com (10.18.126.89) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256) id 15.1.1713.5 via Frontend Transport; Mon, 11 Nov 2019 16:16:10 -0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.127]) by SHSMSX106.ccr.corp.intel.com ([169.254.10.248]) with mapi id 14.03.0439.000; Tue, 12 Nov 2019 08:16:08 +0800 From: "Liming Gao" To: "devel@edk2.groups.io" , "philmd@redhat.com" , "Tan, Ming" Subject: Re: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform. Thread-Topic: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform. Thread-Index: AQHVmGrookINngRMY0+wOPXJJrlOKKeFLUoAgAF+k4A= Date: Tue, 12 Nov 2019 00:16:08 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14E53CC3F@SHSMSX104.ccr.corp.intel.com> References: <6a59c2de-daf8-9555-d9ef-54a4734619d9@redhat.com> In-Reply-To: <6a59c2de-daf8-9555-d9ef-54a4734619d9@redhat.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao >-----Original Message----- >From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of >Philippe Mathieu-Daud=E9 >Sent: Monday, November 11, 2019 5:27 PM >To: devel@edk2.groups.io; Tan, Ming >Subject: Re: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a >spell error of platform. > >On 11/11/19 8:18 AM, Tan, Ming wrote: >> Old code use platfomr. >> Change PlatfomrSmbiosDriverEntryPoint to PlatformSmbiosDriverEntryPoint= . >> >> Signed-off-by: Ming Tan >> --- >> EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c | 2 +- >> EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf | 2 +- >> 2 files changed, 2 insertions(+), 2 deletions(-) >> >> diff --git a/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c >b/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c >> index e6f8734600..48a3bfb5e9 100644 >> --- a/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c >> +++ b/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c >> @@ -82,7 +82,7 @@ CreatePlatformSmbiosMemoryRecords ( >> **/ >> EFI_STATUS >> EFIAPI >> -PlatfomrSmbiosDriverEntryPoint ( >> +PlatformSmbiosDriverEntryPoint ( >> IN EFI_HANDLE ImageHandle, >> IN EFI_SYSTEM_TABLE *SystemTable >> ) >> diff --git a/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf >b/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf >> index 95b119e953..756f643c74 100644 >> --- a/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf >> +++ b/EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.inf >> @@ -15,7 +15,7 @@ >> FILE_GUID =3D 67FA951E-4FA2-9F4E-A658-4DBD954A= C22E >> MODULE_TYPE =3D DXE_DRIVER >> VERSION_STRING =3D 1.0 >> - ENTRY_POINT =3D PlatfomrSmbiosDriverEntryPoint >> + ENTRY_POINT =3D PlatformSmbiosDriverEntryPoint >> >> >> [Sources] >> > >Reviewed-by: Philippe Mathieu-Daude > > >