* [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node
@ 2016-11-10 5:17 Feng Tian
2016-11-11 8:45 ` Ni, Ruiyu
0 siblings, 1 reply; 2+ messages in thread
From: Feng Tian @ 2016-11-10 5:17 UTC (permalink / raw)
To: edk2-devel; +Cc: Eric Jin, Liming Gao
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>
---
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 c167b4c..8a3a470 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 5922dee..87eca23 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.7.1.windows.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node
2016-11-10 5:17 [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node Feng Tian
@ 2016-11-11 8:45 ` Ni, Ruiyu
0 siblings, 0 replies; 2+ messages in thread
From: Ni, Ruiyu @ 2016-11-11 8:45 UTC (permalink / raw)
To: Tian, Feng, edk2-devel@lists.01.org; +Cc: Gao, Liming, Jin, Eric
Reviewed-by: Ruiyu Ni <ruiyu.ni@intel.com>
Thanks/Ray
> -----Original Message-----
> From: edk2-devel [mailto:edk2-devel-bounces@lists.01.org] On Behalf Of
> Feng Tian
> Sent: Thursday, November 10, 2016 1:17 PM
> To: edk2-devel@lists.01.org
> Cc: Gao, Liming <liming.gao@intel.com>; Jin, Eric <eric.jin@intel.com>
> Subject: [edk2] [patch] 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>
> ---
> 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 c167b4c..8a3a470 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 5922dee..87eca23 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.7.1.windows.2
>
> _______________________________________________
> edk2-devel mailing list
> edk2-devel@lists.01.org
> https://lists.01.org/mailman/listinfo/edk2-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-11-11 8:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-10 5:17 [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node Feng Tian
2016-11-11 8:45 ` Ni, Ruiyu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox