From d5d673708d911b3f2b7985f3ae7e5a07a3013c23 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Tue, 28 Aug 2018 13:39:29 +0200 Subject: [PATCH] frontend/axi: fix read id --- litedram/frontend/axi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litedram/frontend/axi.py b/litedram/frontend/axi.py index 81ceac9..f0772d3 100644 --- a/litedram/frontend/axi.py +++ b/litedram/frontend/axi.py @@ -237,7 +237,7 @@ class LiteDRAMAXI2NativeR(Module): # Read data self.comb += [ port.rdata.connect(r_buffer.sink), - r_buffer.source.connect(axi.r) + r_buffer.source.connect(axi.r, omit={"id"}) ]