From b9fddfb8610599d86157100b58684e8c1a9bfbb0 Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Thu, 16 Nov 2017 16:33:06 +0000 Subject: [PATCH] ArmPlatformPkg: move internal SP805 header into driver directory 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 Reviewed-by: Leif Lindholm --- ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c | 3 ++- .../Drivers => Drivers/SP805WatchdogDxe}/SP805Watchdog.h | 0 2 files changed, 2 insertions(+), 1 deletion(-) rename ArmPlatformPkg/{Include/Drivers => Drivers/SP805WatchdogDxe}/SP805Watchdog.h (100%) diff --git a/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805Watchdog.c index c78d2b9ff9..0a9f64095b 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