frontend/crossbar: fix #49

This commit is contained in:
Florent Kermarrec 2018-09-29 20:09:07 +02:00
parent 5fb8afe7e5
commit 58209708e7
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: