fix csr_name in add_csr()
authorIlia Sergachev <ilia.sergachev@protonmail.ch>
Sun, 2 Jun 2019 18:56:02 +0000 (20:56 +0200)
committerIlia Sergachev <ilia.sergachev@protonmail.ch>
Sun, 2 Jun 2019 18:56:02 +0000 (20:56 +0200)
litex/soc/integration/soc_core.py

index 949bd0434f512a6f6610c657b941d2b76a46e5b4..86b0100ae569814e8c63d0de763dccb103397b3b 100644 (file)
@@ -397,7 +397,7 @@ class SoCCore(Module):
                 if n not in self.soc_csr_map.values():
                     self.soc_csr_map.update({csr_name: n})
                     return
-            raise ValueError("No more space to allocate {} csr".format(name))
+            raise ValueError("No more space to allocate {} csr".format(csr_name))
         # csr_id provided: check that csr_id is not already used and add csr
         else:
             for _name, _id in self.soc_csr_map.items():