summaryrefslogtreecommitdiffstats
path: root/ArmPlatformPkg/Scripts/Ds5/profile.py
diff options
context:
space:
mode:
Diffstat (limited to 'ArmPlatformPkg/Scripts/Ds5/profile.py')
-rw-r--r--ArmPlatformPkg/Scripts/Ds5/profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPlatformPkg/Scripts/Ds5/profile.py b/ArmPlatformPkg/Scripts/Ds5/profile.py
index 8f74cf2a8b..f87dee2469 100644
--- a/ArmPlatformPkg/Scripts/Ds5/profile.py
+++ b/ArmPlatformPkg/Scripts/Ds5/profile.py
@@ -321,7 +321,7 @@ for (key,value) in sorted_functions_cycles[:20]:
else:
break;
print "----"
-for (key,value) in sorted_all_functions_cycles[:20]:
+for (key,value) in sorted_all_functions_cycles[:20]:
if value[0] != 0:
print "%s (cycles: %d - %d%%, count: %d)" % (key, value[0], (value[0] * 100) / total_cycles, value[1])
else: