[top] Minor lint fixes
Signed-off-by: Timothy Chen <timothytim@google.com>
diff --git a/hw/ip/sram_ctrl/rtl/sram_ctrl.sv b/hw/ip/sram_ctrl/rtl/sram_ctrl.sv
index c4d7b06..510cd42 100644
--- a/hw/ip/sram_ctrl/rtl/sram_ctrl.sv
+++ b/hw/ip/sram_ctrl/rtl/sram_ctrl.sv
@@ -290,7 +290,8 @@
// tie off unused signals
logic unused_sigs;
assign unused_sigs = ^{lc_hw_debug_en_i,
- reg2hw.exec.q};
+ reg2hw.exec.q,
+ otp_en_sram_ifetch_i};
end
/////////////////////////
diff --git a/hw/ip/tlul/rtl/tlul_adapter_host.sv b/hw/ip/tlul/rtl/tlul_adapter_host.sv
index 4fcb1d7..c622ca4 100644
--- a/hw/ip/tlul/rtl/tlul_adapter_host.sv
+++ b/hw/ip/tlul/rtl/tlul_adapter_host.sv
@@ -105,7 +105,7 @@
};
// TODO #7966 disable data intgrity overwrite once dv support available
- tlul_cmd_intg_gen #(.EnableDataIntgGen (1'b1)) u_cmd_intg_gen (
+ tlul_cmd_intg_gen #(.EnableDataIntgGen (EnableDataIntgGen)) u_cmd_intg_gen (
.tl_i(tl_out),
.tl_o(tl_o)
);