common: remove direction in layout

This commit is contained in:
Florent Kermarrec 2016-03-30 20:21:21 +02:00
parent 58a09bbdd6
commit 97a0785e28
1 changed files with 2 additions and 2 deletions

View File

@ -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)]