1
0
mirror of https://github.com/ARM-software/devlib.git synced 2025-09-23 20:31:54 +01:00
This commit is contained in:
Sebastian Goscik
2016-02-15 15:21:40 +00:00
parent 880a0bcb7c
commit aab487c1ac
3 changed files with 4 additions and 7 deletions

View File

@@ -68,7 +68,7 @@ class Platform(object):
def _identify_big_core(self):
for core in self.core_names:
if core.upper() in BIG_CPUS:
if core.upper() in BIG_CPUS:
return core
big_idx = self.core_clusters.index(max(self.core_clusters))
return self.core_names[big_idx]
@@ -88,4 +88,3 @@ class Platform(object):
if core != self.big_core:
self.little_core = core
break