Commit b4127c1f authored by Sandrine Bailleux's avatar Sandrine Bailleux
Browse files

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
Showing with 1 addition and 1 deletion
+1 -1
......@@ -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)
{
......
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