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::442; helo=mail-wr1-x442.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wr1-x442.google.com (mail-wr1-x442.google.com [IPv6:2a00:1450:4864:20::442]) (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 2452D211A2D86 for ; Thu, 20 Dec 2018 03:12:06 -0800 (PST) Received: by mail-wr1-x442.google.com with SMTP id s12so1299748wrt.4 for ; Thu, 20 Dec 2018 03:12:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=qcwWGlZeUGh7fupWeKyPbcRrlom8HFNzFdI6fIDRHKk=; b=U5JVkv0utluWEpuTYZDjKPKAii7CbVjRw+/96aXEUFLzvYjRMII9Kx3mkGgDBRd+/f CMRJpjJVxJs63PofiCXw3ZZ1KWcmakTrN3ymUCsLHgjMkYEVmvaOg7xUvBpCMroQhGLj w+PiAhH8oO1mfc/sF0RGktX6o1d7YT/dEQo4M= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=qcwWGlZeUGh7fupWeKyPbcRrlom8HFNzFdI6fIDRHKk=; b=TGd5lK47JBmCmIFnksRqr3xgOOkHoN030FkK4ka6fVyPU5CT7F0RZ5vd2feRX6icH6 +NEM7z+PMWW+W5ML0bgez9oJ6GBdxQTLfPqWq9juOeN9CFaDNoRGS1etlxW5gqkAYOvY gFInJMdwqpyD9akNdFFPIYS9YF859nVZjJwxR0SR9PE6Rv72fdbJctf+XEa4PvGhhDFL AhDyamS8mogYPq/+DvFfW77+LXGbmCBSvNEiSHaqqFQtGdvTGURp9xtblC6nBXMHT97W yAp4E6rt9HLGsb7br61BE9hxpCOANgtpRLwar8NDrjdUU5l00b45DNOKfkolLZKtSzrr /DIA== X-Gm-Message-State: AJcUukd1KhCBdjfc3TwI3R7namcaBAJQ2SPeWqM899YPr1uTJ+utgW5m kIeWOSl9Ds1j5AzIaCDHmG73CDUhq4Ucrg== X-Google-Smtp-Source: ALg8bN4LZ9oVYv265l6xQCF7MBCwLWZT2eeMJe/0coiSSxuu/KVXDeRMWscP3j7Tssbs4oImePW6qw== X-Received: by 2002:a5d:4d87:: with SMTP id b7mr1064471wru.316.1545304324213; Thu, 20 Dec 2018 03:12:04 -0800 (PST) Received: from harold.home ([2a01:cb1d:112:6f00:e5c9:6e00:25cb:e32e]) by smtp.gmail.com with ESMTPSA id h10sm7290724wmf.44.2018.12.20.03.12.03 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 20 Dec 2018 03:12:03 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: liming.gao@intel.com, leif.lindholm@linaro.org, Ard Biesheuvel Date: Thu, 20 Dec 2018 12:12:01 +0100 Message-Id: <20181220111201.30613-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [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:12:06 -0000 Content-Transfer-Encoding: 8bit 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 --- 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