From 97a0785e28272a0af740474bf2922794cb37440b Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Wed, 30 Mar 2016 20:21:21 +0200 Subject: [PATCH] common: remove direction in layout --- litescope/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litescope/common.py b/litescope/common.py index 8967ed3..71526cb 100644 --- a/litescope/common.py +++ b/litescope/common.py @@ -6,8 +6,8 @@ from litex.soc.interconnect.stream import * def data_layout(dw): - return [("data", dw, DIR_M_TO_S)] + return [("data", dw)] def hit_layout(): - return [("hit", 1, DIR_M_TO_S)] + return [("hit", 1)]