MdePkg: Fix spec mismatch in string representation of EMMC dev node

Cc: Eric Jin <eric.jin@intel.com>
Cc: Liming Gao <liming.gao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Feng Tian <feng.tian@intel.com>
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
This commit is contained in:
Feng Tian 2016-11-10 13:16:14 +08:00
parent 8677a56af6
commit d18f9699e7
2 changed files with 2 additions and 2 deletions

View File

@ -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 },

View File

@ -850,7 +850,7 @@ DevPathToTextEmmc (
Emmc = DevPath;
UefiDevicePathLibCatPrint (
Str,
L"Emmc(0x%x)",
L"eMMC(0x%x)",
Emmc->SlotNumber
);
}