fix interrupt_name
authorIlia Sergachev <ilia.sergachev@protonmail.ch>
Sun, 2 Jun 2019 18:48:08 +0000 (20:48 +0200)
committerIlia Sergachev <ilia.sergachev@protonmail.ch>
Sun, 2 Jun 2019 18:52:31 +0000 (20:52 +0200)
litex/soc/integration/soc_core.py

index cbd1fb54825fa69ef673ce409bf0fc7a4da7d6a4..949bd0434f512a6f6610c657b941d2b76a46e5b4 100644 (file)
@@ -361,7 +361,7 @@ class SoCCore(Module):
         # check that interrupt_id is in range
         if interrupt_id is not None and interrupt_id >= 32:
             raise ValueError("{} Interrupt ID out of range ({}, max=31)".format(
-                interrupt_namename, interrupt_id))
+                interrupt_name, interrupt_id))
 
         # interrupt_id not provided: allocate interrupt to the first available id
         if interrupt_id is None:
@@ -369,7 +369,7 @@ class SoCCore(Module):
                 if n not in self.soc_interrupt_map.values():
                     self.soc_interrupt_map.update({interrupt_name: n})
                     return
-            raise ValueError("No more space to allocate {} interrupt".format(name))
+            raise ValueError("No more space to allocate {} interrupt".format(interrupt_name))
         # interrupt_id provided: check that interrupt_id is not already used and add interrupt
         else:
             for _name, _id in self.soc_interrupt_map.items():