From d18f9699e7c98bf63f9d92f8e111bb3a6b3d0882 Mon Sep 17 00:00:00 2001 From: Feng Tian Date: Thu, 10 Nov 2016 13:16:14 +0800 Subject: [PATCH] MdePkg: Fix spec mismatch in string representation of EMMC dev node Cc: Eric Jin Cc: Liming Gao Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Feng Tian Reviewed-by: Ruiyu Ni --- MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c | 2 +- MdePkg/Library/UefiDevicePathLib/DevicePathToText.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c b/MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c index c167b4ce03..8a3a470f3f 100644 --- a/MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c +++ b/MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c @@ -3529,7 +3529,7 @@ GLOBAL_REMOVE_IF_UNREFERENCED DEVICE_PATH_FROM_TEXT_TABLE mUefiDevicePathLibDevP {L"NVMe", DevPathFromTextNVMe }, {L"UFS", DevPathFromTextUfs }, {L"SD", DevPathFromTextSd }, - {L"Emmc", DevPathFromTextEmmc }, + {L"eMMC", DevPathFromTextEmmc }, {L"DebugPort", DevPathFromTextDebugPort }, {L"MAC", DevPathFromTextMAC }, {L"IPv4", DevPathFromTextIPv4 }, diff --git a/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c b/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c index 5922deeea8..87eca23526 100644 --- a/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c +++ b/MdePkg/Library/UefiDevicePathLib/DevicePathToText.c @@ -850,7 +850,7 @@ DevPathToTextEmmc ( Emmc = DevPath; UefiDevicePathLibCatPrint ( Str, - L"Emmc(0x%x)", + L"eMMC(0x%x)", Emmc->SlotNumber ); } -- 2.39.2