mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
migen/actorlib/packet: fix source.error in Depacketizer
This commit is contained in:
parent
9210df9e9f
commit
5253b0c06e
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ class Depacketizer(Module):
|
||||||
)
|
)
|
||||||
|
|
||||||
if hasattr(sink, "error"):
|
if hasattr(sink, "error"):
|
||||||
self.comb += source_error.eq(sink.error)
|
self.comb += source.error.eq(sink.error)
|
||||||
self.comb += [
|
self.comb += [
|
||||||
source.eop.eq(sink.eop | no_payload),
|
source.eop.eq(sink.eop | no_payload),
|
||||||
source.data.eq(sink.data),
|
source.data.eq(sink.data),
|
||||||
|
|
Loading…
Reference in a new issue