From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io0-x22e.google.com (mail-io0-x22e.google.com [IPv6:2607:f8b0:4001:c06::22e]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 06C7481F19 for ; Thu, 1 Dec 2016 06:40:41 -0800 (PST) Received: by mail-io0-x22e.google.com with SMTP id c21so391322973ioj.1 for ; Thu, 01 Dec 2016 06:40:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf-com.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=SbE4s4UVjfiVZORwzZxuHasxsVGvD25OICy1jInVB4I=; b=e/TvYDT0jPLzxJoF9a2YGpwur16fvxqCHS1VVjMpfAwm2gUdYujQtLf4fS9WmPT7qW WicZkCGU//nJb3eXtAsoUPRrY3QU1i3640026XZi3bwQKq2fFwkDSBxvKnm2d8yNM8Je /pUncZoBIpFCPa9SeDMBKpyuWiu6DMyXHhgOyVTLtJKqUkLQBhW1aGPdO4nK68P2wvJr dsapaU98zK/dcuzegzSgbHCCN9UvwXsoTxBhC+JbyTVkP3FwEYb5LPUJUiWcG9/Sc8cA T2tVIlHuBReqPeWOobCy+avMjl587X57m1IFYVtJs3YzcGoLmsxjCioz3l5yZulASyA7 Twlw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=SbE4s4UVjfiVZORwzZxuHasxsVGvD25OICy1jInVB4I=; b=kVLRFZr8h9P1U/qE0NCz/GRBi/kcVvcrn0QCewnIfTfxuA6mN8KUFA874Q6TNLuOTH YkyxeABzDQSEpUshvk+9K0olnDDoCPPT7pXjjg4awfJ61dkriMMXngeYKF6jC9NvYVNd IA2W9cDvk8OZXiBfl5zwuwsfJhC+RcHAEeu3q6apehdat8r4sOnACF6I2ZdNu7zorKdj ywiaVyNSH7twsVCCbj0MceA8i8x88NEYtQ9v2UfJKbtBA9CXf2LRgDBMszqoAjJQnKvU 2K/5r+mNGLgbVc+cy3TB1YcVc0vX0SQfpBLEDjEPdacA+AhFETWeiW3Yq8t+LHXEjHZN NePQ== X-Gm-Message-State: AKaTC010RmP4Zudvl3uzk2z3mk52UlXubYOAlouvM2RKZyfFGpGr1eQA3u9nB9InB1TEUd0FDr3BGtrqUHYZKw== X-Received: by 10.107.18.96 with SMTP id a93mr33757669ioj.144.1480603236972; Thu, 01 Dec 2016 06:40:36 -0800 (PST) MIME-Version: 1.0 Received: by 10.107.131.13 with HTTP; Thu, 1 Dec 2016 06:40:36 -0800 (PST) In-Reply-To: References: From: Marcin Wojtas Date: Thu, 1 Dec 2016 15:40:36 +0100 Message-ID: To: Feng Tian Cc: edk2-devel-01 , Jan Dabros , Star Zeng 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: Thu, 01 Dec 2016 14:40:41 -0000 Content-Type: text/plain; charset=UTF-8 Hi Feng, You are right. Sorry for the mistake. Best regards, Marcin 2016-12-01 9:41 GMT+01:00 Feng Tian : > The commit e27cca has a typo on DEBUG level macro. And this debug > message should 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/MdeModulePkg/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 != 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 Slot[%d]!!!\n", Slot)); > continue; > } > > -- > 2.7.1.windows.2 >