configs: fix class reference in CacheConfigs
authorJavier Bueno <javier.bueno@metempsy.com>
Sat, 23 Mar 2019 22:02:44 +0000 (23:02 +0100)
committerJavier Bueno Hedo <javier.bueno@metempsy.com>
Tue, 26 Mar 2019 13:03:15 +0000 (13:03 +0000)
One reference was not properly updated when changing to absolute import paths

Change-Id: Idf330487d5d08d92ebb4489f16d75429f882bd7a
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17541
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>

configs/common/CacheConfig.py

index ab9d267356ff11cdf4b2a7ce49faa42a2329cea0..35e147356ec6dc8594103ef0afd8ae9d1fc2a0a0 100644 (file)
@@ -66,7 +66,7 @@ def config_cache(options, system):
         dcache_class, icache_class, l2_cache_class, walk_cache_class = \
             core.O3_ARM_v7a_DCache, core.O3_ARM_v7a_ICache, \
             core.O3_ARM_v7aL2, \
-            O3_ARM_v7aWalkCache
+            core.O3_ARM_v7aWalkCache
     else:
         dcache_class, icache_class, l2_cache_class, walk_cache_class = \
             L1_DCache, L1_ICache, L2Cache, None