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:c09::244; helo=mail-wm0-x244.google.com; envelope-from=leif.lindholm@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com [IPv6:2a00:1450:400c:c09::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 84D5E21F0DA53 for ; Tue, 6 Feb 2018 09:16:27 -0800 (PST) Received: by mail-wm0-x244.google.com with SMTP id r78so5377180wme.0 for ; Tue, 06 Feb 2018 09:22:10 -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:in-reply-to:references; bh=1cC15yR3+ouhYCIXLO2xFtKmiEKdlxt4IL7FwRobbYE=; b=L5TQ500ZdyfyyVW8gfnSCXDhU5A2Vdjz7qGxxnrHzVVSd+FpURxUWkNR6MhwG1tgob TlvefRb+PMfU/J+gqDbGN2GjhK7f8ihgCTYvTqSy1T6Q26zC51kuVxK/bk4uJ5ChwOp/ Splcm8NZLhWvH5vfA4jbxM5ufuu4TwSCAWdmw= 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:in-reply-to :references; bh=1cC15yR3+ouhYCIXLO2xFtKmiEKdlxt4IL7FwRobbYE=; b=rtRD2aUxsINObtoSwTVeUa+JzFNVFad9/SeJ6aQihOMmWZg669HFfcHFMvuLntm3mZ AgTzvmVQl7IxV/Z5WL9zXMuwqjLKaofS5Hmt+9vHVyFbH7VOLhD1y2Y1U2YhmC34QoqH iENXxcXCZvHbVwL9p6mpvmboPp/Pnggj4V0J2I755/4iiMPtLmJbB30YPNEQjcBRXtuO +XoVunzo9uvUYHEZnRch0M1Dsd6MwwHzOqo3ayWC/UTD4sDvEGr0aiJDbyIJvKUi+Di+ L2UX1zUpbHp+hyHQLPbbzZ2S5PUj6bZxy1485STYhc6RCSagwWmcyGHWFJL9/dcB5ZwC PLMg== X-Gm-Message-State: APf1xPDKpzWELs1XKuO6N1Z7644aLh/KgtwKgW9FL3nj/6/jxJL9QkHo 1XZtGdM6TveJ3ADr2sqK2KJuIxLRGr4= X-Google-Smtp-Source: AH8x2266+bNys4D0dPMd1YDi0ONOFIBX3zpaozITqFYDWLr1nKV6kHOlIoexbFU9Neg5+al9IB4Jkw== X-Received: by 10.28.37.5 with SMTP id l5mr2521551wml.143.1517937728852; Tue, 06 Feb 2018 09:22:08 -0800 (PST) Received: from vanye.hemma.eciton.net (cpc92316-cmbg19-2-0-cust118.5-4.cable.virginm.net. [82.12.0.119]) by smtp.gmail.com with ESMTPSA id 77sm14854664wmt.37.2018.02.06.09.22.07 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 06 Feb 2018 09:22:07 -0800 (PST) From: Leif Lindholm To: edk2-devel@lists.01.org Cc: ard.biesheuvel@linaro.org Date: Tue, 6 Feb 2018 17:21:59 +0000 Message-Id: <20180206172202.11667-4-leif.lindholm@linaro.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20180206172202.11667-1-leif.lindholm@linaro.org> References: <20180206172202.11667-1-leif.lindholm@linaro.org> Subject: [PATCH 3/6] ArmPkg: delete references to unused guids/Pcds from CpuDxe X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Feb 2018 17:16:28 -0000 gEfiDebugSupportPeriodicCallbackProtocolGuid and PcdCpuDxeProduceDebugSupport are referred to from CpuDxe. Delete references from .inf and .h. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Leif Lindholm --- ArmPkg/Drivers/CpuDxe/CpuDxe.h | 1 - ArmPkg/Drivers/CpuDxe/CpuDxe.inf | 2 -- 2 files changed, 3 deletions(-) diff --git a/ArmPkg/Drivers/CpuDxe/CpuDxe.h b/ArmPkg/Drivers/CpuDxe/CpuDxe.h index a0f71e69ec..70afe00a08 100644 --- a/ArmPkg/Drivers/CpuDxe/CpuDxe.h +++ b/ArmPkg/Drivers/CpuDxe/CpuDxe.h @@ -35,7 +35,6 @@ #include #include #include -#include #include extern BOOLEAN mIsFlushingGCD; diff --git a/ArmPkg/Drivers/CpuDxe/CpuDxe.inf b/ArmPkg/Drivers/CpuDxe/CpuDxe.inf index d068e06803..0c5017b31e 100644 --- a/ArmPkg/Drivers/CpuDxe/CpuDxe.inf +++ b/ArmPkg/Drivers/CpuDxe/CpuDxe.inf @@ -60,7 +60,6 @@ [LibraryClasses] [Protocols] gEfiCpuArchProtocolGuid - gEfiDebugSupportPeriodicCallbackProtocolGuid [Guids] gEfiDebugImageInfoTableGuid @@ -72,7 +71,6 @@ [Pcd.common] gArmTokenSpaceGuid.PcdVFPEnabled [FeaturePcd.common] - gArmTokenSpaceGuid.PcdCpuDxeProduceDebugSupport gArmTokenSpaceGuid.PcdDebuggerExceptionSupport [Depex] -- 2.11.0