From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:4864:20::544; helo=mail-ed1-x544.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-ed1-x544.google.com (mail-ed1-x544.google.com [IPv6:2a00:1450:4864:20::544]) (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 782D2211A2D8E for ; Thu, 20 Dec 2018 03:30:56 -0800 (PST) Received: by mail-ed1-x544.google.com with SMTP id x30so1441975edx.2 for ; Thu, 20 Dec 2018 03:30:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=l+wnnwN81WNIF9b21y2ipOMq9WxTqcIQGIUrK9UcNEI=; b=BdoYEPJg1Xpxvt8dLXC3XppW/W9yqsRDnFZShA/rSBh7EHsheNcwEa7LlWpvx9Wg3d xD9nNcXXKatyFMTkg4+GLCCMjgWIwpzKULvKjo4vJZJp6biDBPOW4ws0tz4dnswlpZKB hCD0iGgKciI5VohJFmpSaFJSfwyc3kZw41Tkc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=l+wnnwN81WNIF9b21y2ipOMq9WxTqcIQGIUrK9UcNEI=; b=Xdb1LofzVH0jbmjNvjlxD9HPCk5R3HVKQTWl+9jzXIOJSrndbHOSxVgB8pswIbibSD nrhhh98O3kfTu+RJJPaPYbGR0TMgU/2sitA18KqGwfDBoY+v6CSsewBJK5TkMN4APp8H VTGuLpuUNjKF3kVXilvmuSVCXzcOmAPoSzMhHrmF1VP7pe8huRm5H6FPzoa2IAanIZwg BbBAiXjDHRM4ZWgagdpcOPwQpleWEk10aI42egByCdo/Fgaz76/oZJ+IvlRKJDCNkU+e w5ON86V+S8Mo5Qj3TKwv/WvSy4WeybVKVGCJOEYiIIQTB3at0MZ/MCmyRB5d2Q/9ZkY/ G+3A== X-Gm-Message-State: AA+aEWZ9+rL13zSmR00J//+xNEDhS7KTf1mkhQKIVOSvm2ip/Qyzcl8d BiuLkipFLiHF/83yP6LHIW6sBfDudZT8nNAPVCK9Xw== X-Google-Smtp-Source: AFSGD/V27k3Yb72NTglNmFmIqXb1v2qZ0wKo6FpspIfGohsxHv8Zdly5m5jiC5rYe/R/xufFugHvanZyYImZY7BYFhg= X-Received: by 2002:aa7:d487:: with SMTP id b7mr22350167edr.256.1545305454816; Thu, 20 Dec 2018 03:30:54 -0800 (PST) MIME-Version: 1.0 References: <20181220111201.30613-1-ard.biesheuvel@linaro.org> <20181220112136.g6brpo4txvqr6sbh@bivouac.eciton.net> In-Reply-To: <20181220112136.g6brpo4txvqr6sbh@bivouac.eciton.net> From: Ard Biesheuvel Date: Thu, 20 Dec 2018 12:30:43 +0100 Message-ID: To: Leif Lindholm Cc: "edk2-devel@lists.01.org" , "Gao, Liming" Subject: Re: [PATCH] MdePkg/Arm/ProcessorBind.h: fix copy/paste error X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Dec 2018 11:30:56 -0000 Content-Type: text/plain; charset="UTF-8" On Thu, 20 Dec 2018 at 12:21, Leif Lindholm wrote: > > On Thu, Dec 20, 2018 at 12:12:01PM +0100, Ard Biesheuvel wrote: > > Instead of #defining MAX_ALLOC_ADDRESS to MAX_ADDRESS as intended, > > it is #defined to itself, causing all ARM builds to break. > > > > Contributed-under: TianoCore Contribution Agreement 1.1 > > Signed-off-by: Ard Biesheuvel > > Reviewed-by: Leif Lindholm > Pushed as 4a1500db2b42..87b920fe22be (with Leif's ack) > > --- > > > > Apologies for the breakage. Please ack asap. > > > > MdePkg/Include/Arm/ProcessorBind.h | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/MdePkg/Include/Arm/ProcessorBind.h b/MdePkg/Include/Arm/ProcessorBind.h > > index 16a61fc7a325..0b7b486125f9 100644 > > --- a/MdePkg/Include/Arm/ProcessorBind.h > > +++ b/MdePkg/Include/Arm/ProcessorBind.h > > @@ -151,7 +151,7 @@ typedef INT32 INTN; > > /// > > /// Maximum usable address at boot time > > /// > > -#define MAX_ALLOC_ADDRESS MAX_ALLOC_ADDRESS > > +#define MAX_ALLOC_ADDRESS MAX_ADDRESS > > > > /// > > /// Maximum legal ARM INTN and UINTN values. > > -- > > 2.19.2 > >