From: Feng Tian Date: Thu, 10 Nov 2016 05:16:14 +0000 (+0800) Subject: MdePkg: Fix spec mismatch in string representation of EMMC dev node X-Git-Tag: edk2-stable201903~5217 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=d18f9699e7c98bf63f9d92f8e111bb3a6b3d0882 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 --- 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 ); }