From a03570ccca89f40d53288ffcb9fe8d180e6d85f0 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 22 Sep 2014 18:09:30 +0200 Subject: [PATCH] flow/actor: fix eop direction --- migen/flow/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/migen/flow/actor.py b/migen/flow/actor.py index 8968b533..d8093724 100644 --- a/migen/flow/actor.py +++ b/migen/flow/actor.py @@ -22,7 +22,7 @@ class _Endpoint(Record): if packetized: endpoint_layout += [ ("sop", 1, DIR_M_TO_S), - ("eop", 1, DIR_S_TO_M) + ("eop", 1, DIR_M_TO_S) ] Record.__init__(self, endpoint_layout) -- 2.30.2