Fix reordering controller rejecting all commands
This commit is contained in:
parent
8f14211f00
commit
71f78d953e
|
@ -88,7 +88,7 @@ class LiteDRAMCrossbar(Module):
|
||||||
# for each master, determine if another bank locks it
|
# for each master, determine if another bank locks it
|
||||||
master_locked = []
|
master_locked = []
|
||||||
for nm, master in enumerate(self.masters):
|
for nm, master in enumerate(self.masters):
|
||||||
locked = 0
|
locked = Signal()
|
||||||
if not self.controller.settings.with_reordering:
|
if not self.controller.settings.with_reordering:
|
||||||
for other_nb, other_arbiter in enumerate(arbiters):
|
for other_nb, other_arbiter in enumerate(arbiters):
|
||||||
if other_nb != nb:
|
if other_nb != nb:
|
||||||
|
|
Loading…
Reference in New Issue