soc/interconnect/packet/Dispatcher: Add missing **kwargs.

This commit is contained in:
Florent Kermarrec 2024-02-28 13:32:09 +01:00
parent 42c1046323
commit cd8ad3714d
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ class Dispatcher(LiteXModule):
idx = 2**i idx = 2**i
else: else:
idx = i idx = i
cases[idx] = [master.connect(slave)] cases[idx] = [master.connect(slave, **kwargs)]
cases["default"] = [master.ready.eq(1)] cases["default"] = [master.ready.eq(1)]
self.comb += Case(sel, cases) self.comb += Case(sel, cases)