summaryrefslogtreecommitdiff
path: root/plat/arm/common
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2016-06-03 15:00:46 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2016-06-03 15:01:47 +0100
commitb4127c1fc0ea9ea1500acdebbad4998be33408e0 (patch)
tree4fcaa3123d625e6ee7761bd4faaf8542f99ce039 /plat/arm/common
parenta7e530331d7cf4b58618f0715e61b5a872176f07 (diff)
Fix a syntax error
Building TF with ERROR_DEPRECATED=1 fails because of a missing semi-column. This patch fixes this syntax error. Change-Id: I98515840ce74245b0a0215805f85c8e399094f68
Diffstat (limited to 'plat/arm/common')
-rw-r--r--plat/arm/common/aarch64/arm_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plat/arm/common/aarch64/arm_common.c b/plat/arm/common/aarch64/arm_common.c
index 616edc92..c4cc80e6 100644
--- a/plat/arm/common/aarch64/arm_common.c
+++ b/plat/arm/common/aarch64/arm_common.c
@@ -176,7 +176,7 @@ const mmap_region_t *plat_arm_get_mmap(void)
#if ERROR_DEPRECATED
unsigned int plat_get_syscnt_freq2(void)
{
- unsigned int counter_base_frequency
+ unsigned int counter_base_frequency;
#else
unsigned long long plat_get_syscnt_freq(void)
{