From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c0c::244; helo=mail-wr0-x244.google.com; envelope-from=leif.lindholm@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wr0-x244.google.com (mail-wr0-x244.google.com [IPv6:2a00:1450:400c:c0c::244]) (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 37F2C2217CE46 for ; Fri, 8 Dec 2017 11:07:01 -0800 (PST) Received: by mail-wr0-x244.google.com with SMTP id l22so11721967wrc.11 for ; Fri, 08 Dec 2017 11:11:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=NFuygHilRdHJK+Jzo9TJVdABsvpnZzZTRXDHdh/pK+A=; b=GXDGQEwwe5D7wGXCc5ZNcaHKi1GXLkEQfCcio5ahH5D3MvcMG6Mz21dcF/lxHpPEcY PC6E5j62nMlExkJXdFbg9H0TncMmIQIrpfmatFddrowpC3dAvq3uDx43e5Kw5M9sm+eC uBQfCxBq/F2VjahbSPTi9E9g7CZgCb6euF51k= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=NFuygHilRdHJK+Jzo9TJVdABsvpnZzZTRXDHdh/pK+A=; b=Zo2wY/qY94uniZFoLXJDEG/aJBPuaB1xBdrP/q8jplugDUeCjWPoS9aGtRszOnhmal S61BdueAJ2xTVoq9qG3qGMsak1KlhN0TqAag+eWmh/ySApHL5GHFqODhfQoFXoasczSd NN9HO8aC65ERzQsYxrIYrxoyrNx+dibMQT5iutWu3c/zP+oLKweupduLiwrMS1ULEKIN g/w4R006MtADM+OXnpI3duq+JJdie3Etjpv9QEweIy+3EMl35LmCEL7YNAKTmZRJEdN4 mZpqsPmGnAEU/it0D2xnpm3NHZN8VEBZAMDD0bO4pZ6sdyEpAVp22VGzig3aEfgTzuYj sJfw== X-Gm-Message-State: AJaThX5YhEBcOU/66kcAGTTZ6aqWWFfI6313A24/tZ158f3JwlRtGB5A fjfmGbrUXdCA3GohYVfkvC+Nw0TzlmA= X-Google-Smtp-Source: AGs4zMY9OpSdSEf73J8Tk2aXZ5w/V9qo8HKcXvu7SAOQ6Qg3S9vU3sT+7U37rchEsyhwzLgmDNiM6w== X-Received: by 10.223.142.143 with SMTP id q15mr29731280wrb.6.1512760295164; Fri, 08 Dec 2017 11:11:35 -0800 (PST) Received: from bivouac.eciton.net (bivouac.eciton.net. [2a00:1098:0:86:1000:23:0:2]) by smtp.gmail.com with ESMTPSA id 26sm9766161wrw.19.2017.12.08.11.11.32 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 08 Dec 2017 11:11:33 -0800 (PST) Date: Fri, 8 Dec 2017 19:11:31 +0000 From: Leif Lindholm To: Ard Biesheuvel Cc: edk2-devel@lists.01.org Message-ID: <20171208191131.c4b2igyih3t73lkv@bivouac.eciton.net> References: <20171208171051.21184-1-ard.biesheuvel@linaro.org> MIME-Version: 1.0 In-Reply-To: <20171208171051.21184-1-ard.biesheuvel@linaro.org> User-Agent: NeoMutt/20170113 (1.7.2) Subject: Re: [PATCH] ArmPlatformPkg/LcdPlatformNullLib: fix incorrect library class X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2017 19:07:02 -0000 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Dec 08, 2017 at 05:10:51PM +0000, Ard Biesheuvel wrote: > Use LcdPlatformLib not LcdPlatformNullLib (which is the name of this > instance) as LIBRARY_CLASS attribute. > > Contributed-under: TianoCore Contribution Agreement 1.1 > Signed-off-by: Ard Biesheuvel Ah, oops. Reviewed-by: Leif Lindholm > --- > ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf b/ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf > index 41c1d9638812..2cec9b970b5b 100644 > --- a/ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf > +++ b/ArmPlatformPkg/Library/LcdPlatformNullLib/LcdPlatformNullLib.inf > @@ -18,7 +18,7 @@ [Defines] > FILE_GUID = b78d02bb-d0b5-4389-bc7f-b39ee846c784 > MODULE_TYPE = BASE > VERSION_STRING = 1.0 > - LIBRARY_CLASS = LcdPlatformNullLib > + LIBRARY_CLASS = LcdPlatformLib > > [Sources] > LcdPlatformNullLib.c > -- > 2.11.0 >