Skip to content

Commit

Permalink
core/tlp/controller: omit tag in req_sink/req_source connect
Browse files Browse the repository at this point in the history
  • Loading branch information
enjoy-digital committed Nov 4, 2019
1 parent 22f5627 commit 399cc1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litepcie/core/tlp/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, data_width, max_pending_requests):
self.submodules.requests_queue = requests_queue

# Requests Managment -----------------------------------------------------------------------
self.comb += req_sink.connect(req_source, omit=set(["valid", "ready"]))
self.comb += req_sink.connect(req_source, omit=set(["valid", "ready", "tag"]))
self.submodules.req_fsm = req_fsm = FSM(reset_state="IDLE")
req_fsm.act("IDLE",
If(req_sink.valid & req_sink.first,
Expand Down

0 comments on commit 399cc1c

Please sign in to comment.