diff --git a/configs/example/arm/baremetal.py b/configs/example/arm/baremetal.py index 29e9b48fd9..36cc1c17b4 100644 --- a/configs/example/arm/baremetal.py +++ b/configs/example/arm/baremetal.py @@ -135,8 +135,7 @@ def create(args): # Create a cache hierarchy for the cluster. We are assuming that # clusters have core-private L1 caches and an L2 that's shared # within the cluster. - for cluster in system.cpu_cluster: - system.addCaches(want_caches, last_cache_level=2) + system.addCaches(want_caches, last_cache_level=2) # Setup gem5's minimal Linux boot loader. system.auto_reset_addr = True diff --git a/configs/example/arm/starter_fs.py b/configs/example/arm/starter_fs.py index 9d0f0d26b6..73d423e1fa 100644 --- a/configs/example/arm/starter_fs.py +++ b/configs/example/arm/starter_fs.py @@ -138,8 +138,7 @@ def create(args): # Create a cache hierarchy for the cluster. We are assuming that # clusters have core-private L1 caches and an L2 that's shared # within the cluster. - for cluster in system.cpu_cluster: - system.addCaches(want_caches, last_cache_level=2) + system.addCaches(want_caches, last_cache_level=2) # Setup gem5's minimal Linux boot loader. system.realview.setupBootLoader(system, SysPaths.binary)