config: Fix a typo in the simple-atomic-mp configuration
authorAndreas Hansson <andreas.hansson@arm.com>
Wed, 31 Oct 2012 12:39:43 +0000 (08:39 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Wed, 31 Oct 2012 12:39:43 +0000 (08:39 -0400)
This patch fixes a minor typo that managed to sneak into the
simple-atomic-mp regression configuration.

tests/configs/simple-atomic-mp.py

index 231c4ebe90af73eb414178d0be6a6846d4009099..966ae24fe4c17930302c379c1356e1f272369847 100644 (file)
@@ -41,7 +41,7 @@ system = System(cpu = cpus,
 
 # l2cache & bus
 system.toL2Bus = CoherentBus(clock = '2GHz')
-system.l2c = L2Caches(clock = '2GHz', size='4MB', assoc=8)
+system.l2c = L2Cache(clock = '2GHz', size='4MB', assoc=8)
 system.l2c.cpu_side = system.toL2Bus.master
 
 # connect l2c to membus
@@ -49,7 +49,7 @@ system.l2c.mem_side = system.membus.slave
 
 # add L1 caches
 for cpu in cpus:
-    cpu.addPrivateSplitL1Caches(L1Caches(size = '32kB', assoc = 1),
+    cpu.addPrivateSplitL1Caches(L1Cache(size = '32kB', assoc = 1),
                                 L1Caches(size = '32kB', assoc = 4))
     # create the interrupt controller
     cpu.createInterruptController()