Skip to content

Commit e016ff0

Browse files
rw1nklertmichalak
authored andcommitted
modules/zstd: Adjust AxiRam
Signed-off-by: Robert Winkler <[email protected]>
1 parent 8ff78e6 commit e016ff0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

xls/modules/zstd/memory/axi_ram.x

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ proc AxiRamReaderRequester<
105105

106106
// validate bundle
107107
let ar_bundle_ok = ar_bundle_valid && ((ar_bundle.size as u32 + u32:3) <= AXI_DATA_W_LOG2);
108-
if ar_bundle_valid {
109-
trace_fmt!("{:#x}", ar_bundle);
110-
} else {};
108+
//if ar_bundle_valid {
109+
// trace_fmt!("{:#x}", ar_bundle);
110+
//} else {};
111111
let tok = send_if(tok, sync_s, ar_bundle_valid && !ar_bundle_ok, Sync {
112112
id: ar_bundle.id,
113113
resp: AxiReadResp::SLVERR,
@@ -680,9 +680,9 @@ proc AxiRamReaderTest {
680680
tok
681681
}(tok);
682682

683-
let tok = for ((i, axi_ar_bundle), tok): ((u32, TestAxiAr), token) in enumerate(TEST_AXI_AR_BUNDLES) {
683+
let tok = for ((_i, axi_ar_bundle), tok): ((u32, TestAxiAr), token) in enumerate(TEST_AXI_AR_BUNDLES) {
684684
let tok = send(tok, axi_ar_s, axi_ar_bundle);
685-
trace_fmt!("Sent bundle #{} {:#x}", i + u32:1, axi_ar_bundle);
685+
// trace_fmt!("Sent bundle #{} {:#x}", i + u32:1, axi_ar_bundle);
686686

687687
let size_valid = (u32:1 << (axi_ar_bundle.size as u32 + u32:3)) <= TEST_AXI_DATA_W;
688688

0 commit comments

Comments
 (0)