diff options
author | Tan, Ming <ming.tan@intel.com> | 2019-11-11 15:18:50 +0800 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2019-11-13 02:11:03 +0000 |
commit | bfcf262488a140550a53361c225a9b2b1bee0db8 (patch) | |
tree | ba8c4654df03141321cdb4eaefc30803eccaf054 /EmulatorPkg | |
parent | e92b155740cdbf10a85ed8f37f69da0991fc8275 (diff) | |
download | edk2-bfcf262488a140550a53361c225a9b2b1bee0db8.tar.gz |
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>
Reviewed-by: Ray Ni <ray.ni@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
Diffstat (limited to 'EmulatorPkg')
-rw-r--r-- | EmulatorPkg/PlatformSmbiosDxe/PlatformSmbiosDxe.c | 2 | ||||
-rw-r--r-- | 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]
|