From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) (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 4FFE481C60 for ; Thu, 1 Dec 2016 17:44:32 -0800 (PST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 01 Dec 2016 17:44:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,284,1477983600"; d="scan'208";a="1066897641" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by orsmga001.jf.intel.com with ESMTP; 01 Dec 2016 17:44:31 -0800 Received: from fmsmsx117.amr.corp.intel.com (10.18.116.17) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 1 Dec 2016 17:44:30 -0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx117.amr.corp.intel.com (10.18.116.17) with Microsoft SMTP Server (TLS) id 14.3.248.2; Thu, 1 Dec 2016 17:44:30 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.239]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.218]) with mapi id 14.03.0248.002; Fri, 2 Dec 2016 09:44:29 +0800 From: "Zeng, Star" To: "Tian, Feng" , "edk2-devel@lists.01.org" CC: Jan Dabros , Marcin Wojtas , "Zeng, Star" Thread-Topic: [patch] MdeModulePkg/SdMmc: Fix build failure caused by last check-in Thread-Index: AQHSS67ZcAj6tizFr0WdMmj5pxsV2KDz48lg Date: Fri, 2 Dec 2016 01:44:28 +0000 Message-ID: <0C09AFA07DD0434D9E2A0C6AEB048310395BD34C@shsmsx102.ccr.corp.intel.com> References: In-Reply-To: Accept-Language: zh-CN, en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [patch] MdeModulePkg/SdMmc: Fix build failure caused by last check-in 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, 02 Dec 2016 01:44:32 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Star Zeng -----Original Message----- From: Tian, Feng=20 Sent: Thursday, December 1, 2016 4:42 PM To: edk2-devel@lists.01.org Cc: Jan Dabros ; Marcin Wojtas ; Zeng, S= tar Subject: [patch] MdeModulePkg/SdMmc: Fix build failure caused by last check= -in The commit e27cca has a typo on DEBUG level macro. And this debug message s= hould be DEBUG_INFO rather than DEBUG_ERROR. Cc: Jan Dabros Cc: Marcin Wojtas Cc: Star Zeng Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Feng Tian --- MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c b/MdeModule= Pkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c index 4c1b5c8..23faec5 100644 --- a/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c +++ b/MdeModulePkg/Bus/Pci/SdMmcPciHcDxe/SdMmcPciHcDxe.c @@ -638,7 +638,7 @@ SdMmcPciHcDriverBindingStart ( if (EFI_ERROR (Status) && (Status !=3D EFI_MEDIA_CHANGED)) { continue; } else if (!MediaPresent) { - DEBUG ((EFI_ERROR, "SdMmcHcCardDetect: No device attached in Slot[%d= ]!!!\n", Slot)); + DEBUG ((DEBUG_INFO, "SdMmcHcCardDetect: No device attached in=20 + Slot[%d]!!!\n", Slot)); continue; } =20 -- 2.7.1.windows.2