Fix reordering controller rejecting all commands

This commit is contained in:
2018-09-29 13:52:20 -04:00
parent 8f14211f00
commit 71f78d953e
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ class LiteDRAMCrossbar(Module):
# for each master, determine if another bank locks it
master_locked = []
for nm, master in enumerate(self.masters):
locked = 0
locked = Signal()
if not self.controller.settings.with_reordering:
for other_nb, other_arbiter in enumerate(arbiters):
if other_nb != nb: