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::343; helo=mail-wm1-x343.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm1-x343.google.com (mail-wm1-x343.google.com [IPv6:2a00:1450:4864:20::343]) (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 5C899211A759E for ; Wed, 16 Jan 2019 12:51:03 -0800 (PST) Received: by mail-wm1-x343.google.com with SMTP id g67so3510496wmd.2 for ; Wed, 16 Jan 2019 12:51:03 -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; bh=LFjF6SPUY3S54p35moGWjfQAzrmHJ1PuMo42/EV1ACw=; b=brxR/VTULZanlXoulqEdqoaKObOXc8JOELfEFOaQHq4qkZzKCitxl4V5KIfWEGI3SE juh/AQ6cVxgXDHwTiz4EHR7zqdOgFh55dxpRTXJyzMrfHaAOdOPPMNBj2wz+AgEPu294 hAB8eiMoLl+wxq4x5imnLjWMoChiW3AeiSlL8= 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; bh=LFjF6SPUY3S54p35moGWjfQAzrmHJ1PuMo42/EV1ACw=; b=PsXNyYNUi4Nrzio1sXQFbtAPMDZgxo+tjQEVfxvjIaOQSDVofuu1KzfeZCuwVk7Nc7 6oTQhLtbIbgSESpPGguw+eadw2ORTPIg6c8sdpxN0F58G42E+BOhpVqguwJzXaHqJcyc 3GqGOmCmvjCW9fHfP12MhOXXv3r1ZS3GpiFb6mboFG7Folxg+Gasr+9SGHqK+a1Czzs8 F83sCKma1hsfxLFdfZmi+86KvP47KeKv/9AK99AqtnBiDxguwTXkMELRae0xbN7hzs+u xMborpTlHmW9PjB96CXlRbAAznjqUmrlkAHK/ipbtDv1UQIqQMNEXOPkezFEiCyO/p7A ErqQ== X-Gm-Message-State: AJcUukfM9INCzEFQ29r3lGnNRcH52fuAGRUimSd8krpnbnF0IOARPjrS VbtkiIgNglWhnu8av9Nsl6MtiKNWP2dcBQ== X-Google-Smtp-Source: ALg8bN5nTen6x6QlslCm7N6/aEYF6zjJkVNRs/HdTxWvvhfb456H694KD+tvide4uoOzcnRq8T0YJA== X-Received: by 2002:a1c:b70a:: with SMTP id h10mr8642830wmf.125.1547671862243; Wed, 16 Jan 2019 12:51:02 -0800 (PST) Received: from dogfood.home ([2a01:cb1d:112:6f00:28df:207d:542c:1451]) by smtp.gmail.com with ESMTPSA id s5sm24172733wmh.37.2019.01.16.12.51.00 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 16 Jan 2019 12:51:01 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Date: Wed, 16 Jan 2019 21:50:59 +0100 Message-Id: <20190116205059.3488-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 Subject: [PATCH] ArmPkg/DefaultExceptionHandlerLib: add missing UefiLib include 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: Wed, 16 Jan 2019 20:51:04 -0000 Commit 31f5388006fc ("ArmPkg/DefaultExceptionHandlerLib: use console if available") added calls to AsciiPrint() to the default exception handler code, but the ARM version did not include UefiLib.h yet (even though the .INF declares it unconditionally), resulting in build breakage. So add the missing include. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c b/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c index 2e0cfb2d4e03..476ec2061084 100644 --- a/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c +++ b/ArmPkg/Library/DefaultExceptionHandlerLib/Arm/DefaultExceptionHandler.c @@ -22,6 +22,7 @@ #include #include #include +#include #include -- 2.17.1