From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id B950B81E5C for ; Fri, 11 Nov 2016 00:46:02 -0800 (PST) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga105.jf.intel.com with ESMTP; 11 Nov 2016 00:46:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,620,1473145200"; d="scan'208";a="1083820039" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by fmsmga002.fm.intel.com with ESMTP; 11 Nov 2016 00:45:49 -0800 Received: from fmsmsx102.amr.corp.intel.com (10.18.124.200) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 11 Nov 2016 00:45:48 -0800 Received: from shsmsx102.ccr.corp.intel.com (10.239.4.154) by FMSMSX102.amr.corp.intel.com (10.18.124.200) with Microsoft SMTP Server (TLS) id 14.3.248.2; Fri, 11 Nov 2016 00:45:47 -0800 Received: from shsmsx104.ccr.corp.intel.com ([169.254.5.142]) by shsmsx102.ccr.corp.intel.com ([169.254.2.239]) with mapi id 14.03.0248.002; Fri, 11 Nov 2016 16:45:43 +0800 From: "Ni, Ruiyu" To: "Tian, Feng" , "edk2-devel@lists.01.org" CC: "Gao, Liming" , "Jin, Eric" Thread-Topic: [edk2] [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node Thread-Index: AQHSOxHKu0UjI6bQOUOSIahg3EYYGaDTeYmA Date: Fri, 11 Nov 2016 08:45:42 +0000 Deferred-Delivery: Fri, 11 Nov 2016 08:45:00 +0000 Message-ID: <734D49CCEBEEF84792F5B80ED585239D58E73CE2@SHSMSX104.ccr.corp.intel.com> References: <28ff970e51883b4afa23a164c34b1cad295e76c5.1478755004.git.feng.tian@intel.com> In-Reply-To: <28ff970e51883b4afa23a164c34b1cad295e76c5.1478755004.git.feng.tian@intel.com> Accept-Language: en-US, zh-CN X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [patch] MdePkg: Fix spec mismatch in string representation of EMMC dev node X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Nov 2016 08:46:02 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Ruiyu Ni 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 ; Jin, Eric > Subject: [edk2] [patch] MdePkg: Fix spec mismatch in string representatio= n > of EMMC dev node >=20 > Cc: Eric Jin > Cc: Liming Gao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Feng Tian > --- > MdePkg/Library/UefiDevicePathLib/DevicePathFromText.c | 2 +- > MdePkg/Library/UefiDevicePathLib/DevicePathToText.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) >=20 > 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 =3D DevPath; > UefiDevicePathLibCatPrint ( > Str, > - L"Emmc(0x%x)", > + L"eMMC(0x%x)", > Emmc->SlotNumber > ); > } > -- > 2.7.1.windows.2 >=20 > _______________________________________________ > edk2-devel mailing list > edk2-devel@lists.01.org > https://lists.01.org/mailman/listinfo/edk2-devel