frontend/axi: omit bank in rdata connect
This commit is contained in:
parent
06ca53d2b2
commit
5fb8afe7e5
|
@ -259,7 +259,7 @@ class LiteDRAMAXI2NativeR(Module):
|
||||||
|
|
||||||
# Read data
|
# Read data
|
||||||
self.comb += [
|
self.comb += [
|
||||||
port.rdata.connect(r_buffer.sink),
|
port.rdata.connect(r_buffer.sink, omit={"bank"}),
|
||||||
r_buffer.source.connect(axi.r, omit={"id", "last"}),
|
r_buffer.source.connect(axi.r, omit={"id", "last"}),
|
||||||
axi.r.resp.eq(resp_types["okay"])
|
axi.r.resp.eq(resp_types["okay"])
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue