* [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform.
@ 2019-11-11 7:18 Tan, Ming
2019-11-11 9:26 ` [edk2-devel] " Philippe Mathieu-Daudé
2019-11-12 3:34 ` Ni, Ray
0 siblings, 2 replies; 4+ messages in thread
From: Tan, Ming @ 2019-11-11 7:18 UTC (permalink / raw)
To: devel
Old code use platfomr.
Change PlatfomrSmbiosDriverEntryPoint to PlatformSmbiosDriverEntryPoint.
Signed-off-by: Ming Tan <ming.tan@intel.com>
---
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 = 67FA951E-4FA2-9F4E-A658-4DBD954AC22E
MODULE_TYPE = DXE_DRIVER
VERSION_STRING = 1.0
- ENTRY_POINT = PlatfomrSmbiosDriverEntryPoint
+ ENTRY_POINT = PlatformSmbiosDriverEntryPoint
[Sources]
--
2.23.0.windows.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform.
2019-11-11 7:18 [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform Tan, Ming
@ 2019-11-11 9:26 ` Philippe Mathieu-Daudé
2019-11-12 0:16 ` Liming Gao
2019-11-12 3:34 ` Ni, Ray
1 sibling, 1 reply; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2019-11-11 9:26 UTC (permalink / raw)
To: devel, ming.tan
On 11/11/19 8:18 AM, Tan, Ming wrote:
> Old code use platfomr.
> Change PlatfomrSmbiosDriverEntryPoint to PlatformSmbiosDriverEntryPoint.
>
> Signed-off-by: Ming Tan <ming.tan@intel.com>
> ---
> 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 = 67FA951E-4FA2-9F4E-A658-4DBD954AC22E
> MODULE_TYPE = DXE_DRIVER
> VERSION_STRING = 1.0
> - ENTRY_POINT = PlatfomrSmbiosDriverEntryPoint
> + ENTRY_POINT = PlatformSmbiosDriverEntryPoint
>
>
> [Sources]
>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform.
2019-11-11 9:26 ` [edk2-devel] " Philippe Mathieu-Daudé
@ 2019-11-12 0:16 ` Liming Gao
0 siblings, 0 replies; 4+ messages in thread
From: Liming Gao @ 2019-11-12 0:16 UTC (permalink / raw)
To: devel@edk2.groups.io, philmd@redhat.com, Tan, Ming
Reviewed-by: Liming Gao <liming.gao@intel.com>
>-----Original Message-----
>From: devel@edk2.groups.io [mailto:devel@edk2.groups.io] On Behalf Of
>Philippe Mathieu-Daudé
>Sent: Monday, November 11, 2019 5:27 PM
>To: devel@edk2.groups.io; Tan, Ming <ming.tan@intel.com>
>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 <ming.tan@intel.com>
>> ---
>> 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 = 67FA951E-4FA2-9F4E-A658-4DBD954AC22E
>> MODULE_TYPE = DXE_DRIVER
>> VERSION_STRING = 1.0
>> - ENTRY_POINT = PlatfomrSmbiosDriverEntryPoint
>> + ENTRY_POINT = PlatformSmbiosDriverEntryPoint
>>
>>
>> [Sources]
>>
>
>Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform.
2019-11-11 7:18 [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform Tan, Ming
2019-11-11 9:26 ` [edk2-devel] " Philippe Mathieu-Daudé
@ 2019-11-12 3:34 ` Ni, Ray
1 sibling, 0 replies; 4+ messages in thread
From: Ni, Ray @ 2019-11-12 3:34 UTC (permalink / raw)
To: devel@edk2.groups.io, Tan, Ming; +Cc: 'Andrew Fish (afish@apple.com)'
Thanks for your contribution.
Reviewed-by: Ray Ni <ray.ni@Intel.com>
> -----Original Message-----
> From: devel@edk2.groups.io <devel@edk2.groups.io> On Behalf Of Tan,
> Ming
> Sent: Monday, November 11, 2019 3:19 PM
> To: devel@edk2.groups.io
> Subject: [edk2-devel] [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell
> error of platform.
>
> Old code use platfomr.
> Change PlatfomrSmbiosDriverEntryPoint to PlatformSmbiosDriverEntryPoint.
>
> Signed-off-by: Ming Tan <ming.tan@intel.com>
> ---
> 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 = 67FA951E-4FA2-9F4E-A658-4DBD954AC22E
>
> MODULE_TYPE = DXE_DRIVER
>
> VERSION_STRING = 1.0
>
> - ENTRY_POINT = PlatfomrSmbiosDriverEntryPoint
>
> + ENTRY_POINT = PlatformSmbiosDriverEntryPoint
>
>
>
>
>
> [Sources]
>
> --
> 2.23.0.windows.1
>
>
> -=-=-=-=-=-=
> Groups.io Links: You receive all messages sent to this group.
>
> View/Reply Online (#50335): https://edk2.groups.io/g/devel/message/50335
> Mute This Topic: https://groups.io/mt/52449861/1712937
> Group Owner: devel+owner@edk2.groups.io
> Unsubscribe: https://edk2.groups.io/g/devel/unsub [ray.ni@intel.com]
> -=-=-=-=-=-=
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-11-12 3:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-11-11 7:18 [PATCH] EmulatorPkg/PlatformSmbiosDxe: fix a spell error of platform Tan, Ming
2019-11-11 9:26 ` [edk2-devel] " Philippe Mathieu-Daudé
2019-11-12 0:16 ` Liming Gao
2019-11-12 3:34 ` Ni, Ray
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox