Commit f9608bc8 authored by Douglas Raillard's avatar Douglas Raillard
Browse files

Fix ARM_BL31_IN_DRAM build



Some header files using the ULL() macro were not directly including
utils.h where the macro definition resides. As a consequence, a linker
script with values using this macro did not see the macro definition
and kept the "ULL(<value>)" call in the preprocessed file, which lead to
link error.

Files using ULL() macro now include utils.h directly.

Change-Id: I433a7f36bd21a156c20e69bc2a2bb406140ebdf9
Signed-off-by: default avatarDouglas Raillard <douglas.raillard@arm.com>
parent ddc1c56f
......@@ -33,6 +33,7 @@
#include <common_def.h>
#include <soc_css_def.h>
#include <utils.h>
#include <v2m_def.h>
/*
......
......@@ -34,6 +34,7 @@
#include <common_def.h>
#include <platform_def.h>
#include <tbbr_img_def.h>
#include <utils.h>
#include <xlat_tables_defs.h>
......
......@@ -32,6 +32,7 @@
#define __SOC_CSS_DEF_H__
#include <common_def.h>
#include <utils.h>
/*
......
......@@ -35,6 +35,7 @@
#include <board_arm_def.h>
#include <common_def.h>
#include <tzc400.h>
#include <utils.h>
#include <v2m_def.h>
#include "../fvp_def.h"
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment