diff options
author | Javier Bueno <javier.bueno@metempsy.com> | 2019-03-23 23:02:44 +0100 |
---|---|---|
committer | Javier Bueno Hedo <javier.bueno@metempsy.com> | 2019-03-26 13:03:15 +0000 |
commit | c67d89f38287fa90631e41cf1cd85e422e8661ac (patch) | |
tree | f06ca62183e7a7b3e40f1ca996b88d8d4d1d412b | |
parent | 61f0e7e2676a54579cf104a385e0f6fa97266e4b (diff) | |
download | gem5-c67d89f38287fa90631e41cf1cd85e422e8661ac.tar.xz |
configs: fix class reference in CacheConfigs
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>
-rw-r--r-- | configs/common/CacheConfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/common/CacheConfig.py b/configs/common/CacheConfig.py index ab9d26735..35e147356 100644 --- a/configs/common/CacheConfig.py +++ b/configs/common/CacheConfig.py @@ -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 |