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::243; helo=mail-wr0-x243.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-wr0-x243.google.com (mail-wr0-x243.google.com [IPv6:2a00:1450:400c:c0c::243]) (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 5ED1B220F3C3D for ; Thu, 30 Nov 2017 06:11:12 -0800 (PST) Received: by mail-wr0-x243.google.com with SMTP id y21so6729002wrc.1 for ; Thu, 30 Nov 2017 06:15:37 -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=guBTjcaqV1nTDP1wWSejQRnkIAAtaBTHVo2f1kdgzyM=; b=Qt+eswf9/bknQ0tg2F6vZKTB4wYcO7I6Gf1Ek36hTahVwE+MjCa87otQBh0xjA9CFi 8ybZthyYiRwIzuZZe4nNNXWtVx9suXHld0tsCfxBSXVRPskDDExunIes4igKimFsOky0 l0n4vkpyEtBxvLmOikXNqx9Ftnbm5JI81dMgQ= 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=guBTjcaqV1nTDP1wWSejQRnkIAAtaBTHVo2f1kdgzyM=; b=CCroXgnyeV6gd7Re/CvzKfmBaHHAa6/pEeoPQ+l5++BPEjdBm2hAJGH65cidJSzZyb Icbk5tgZAHypYzuKSHGb5tE/U5KA17DCtIrE2xRQxA5VrF+WlbwG7/5sXidwX/+rRZyG 3eGUsqVJ+MEcYPR1AtdTkORbVN+Qq3X/XYBHyV4K6vGvB3wstbqEoBmAivXU276pipPV vwcFW/rGFrngQ8lLFrB2uddB4sCgHeroBvsDSkCFjO7BpBq4wF28ANDFAc5iSXZk9RnU Nqlj0VPulCZmnjknXtFMcOhZNUSAeanhlQs8GarrWVy5jCEpBsdnYvfQZSb4WQDKE0Kw sv6A== X-Gm-Message-State: AJaThX4zD27J+L6wIj8p0graLZKlLBcf8H39X5LUv/7L0sIRC+BCE2KE efUEiE2+StflaZJAD/UGKXBKdSR6QA8= X-Google-Smtp-Source: AGs4zMYDvYdIY3XfTP0g3CFb0ZwIg1NZRwAKfdjY+sAP2IdR9oyvhnfkpOhAiUqWSpRhENPfUw5smg== X-Received: by 10.223.201.10 with SMTP id m10mr2328281wrh.68.1512051336215; Thu, 30 Nov 2017 06:15:36 -0800 (PST) Received: from localhost.localdomain ([105.150.171.234]) by smtp.gmail.com with ESMTPSA id f19sm2303555wmf.5.2017.11.30.06.15.34 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 30 Nov 2017 06:15:35 -0800 (PST) From: Ard Biesheuvel To: edk2-devel@lists.01.org Cc: leif.lindholm@linaro.org, Ard Biesheuvel Date: Thu, 30 Nov 2017 14:15:08 +0000 Message-Id: <20171130141509.27230-7-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20171130141509.27230-1-ard.biesheuvel@linaro.org> References: <20171130141509.27230-1-ard.biesheuvel@linaro.org> Subject: [PATCH 6/7] ArmPlatformPkg: move internal SP805 header into driver directory 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: Thu, 30 Nov 2017 14:11:12 -0000 Move the internal SP805 watchdog header file into the driver directory. It shouldn't be referenced directly by other modules anyway. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel --- ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c | 3 ++- ArmPlatformPkg/{Include/Drivers => Drivers/SP805WatchdogDxe}/SP805Watchdog.h | 0 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c index c78d2b9ff99f..0a9f64095bf8 100644 --- a/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c +++ b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c @@ -25,7 +25,8 @@ #include #include -#include + +#include "SP805Watchdog.h" EFI_EVENT EfiExitBootServicesEvent = (EFI_EVENT)NULL; diff --git a/ArmPlatformPkg/Include/Drivers/SP805Watchdog.h b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.h similarity index 100% rename from ArmPlatformPkg/Include/Drivers/SP805Watchdog.h rename to ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.h -- 2.11.0