diff options
author | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2015-10-02 09:32:35 +0100 |
---|---|---|
committer | Sandrine Bailleux <sandrine.bailleux@arm.com> | 2015-10-19 08:46:54 +0100 |
commit | 3ae8a360e04c35dc51114d13a5574760bc264cf7 (patch) | |
tree | 9188ce8d1ca50947b731fb0b3aeba58127a68c59 | |
parent | a3a348993ad0a2b863f6277229423152fbed0af0 (diff) |
Fix #include path in ARM platform BL1 setup code
This patch fixes the relative path to the 'bl1_private.h' header file
included from 'arm_bl1_setup.c'. Note that, although the path was
incorrect, it wasn't causing a compilation error because the header
file still got included through an alternative include search path.
Change-Id: I28e4f3dbe50e3550ca6cad186502c88a9fb5e260
-rw-r--r-- | plat/arm/common/arm_bl1_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/arm/common/arm_bl1_setup.c b/plat/arm/common/arm_bl1_setup.c index 6970aa31..ddf383fe 100644 --- a/plat/arm/common/arm_bl1_setup.c +++ b/plat/arm/common/arm_bl1_setup.c @@ -35,7 +35,7 @@ #include <console.h> #include <platform_def.h> #include <plat_arm.h> -#include "../../bl1/bl1_private.h" +#include "../../../bl1/bl1_private.h" #if USE_COHERENT_MEM |