[otbn] Fix line length lint errors
We got two previously unseen lint errors in the tracer, fix the line
length to be below 100 characters.
Signed-off-by: Philipp Wagner <phw@lowrisc.org>
diff --git a/hw/ip/otbn/dv/tracer/rtl/otbn_trace_if.sv b/hw/ip/otbn/dv/tracer/rtl/otbn_trace_if.sv
index 8843dfc..290a952 100644
--- a/hw/ip/otbn/dv/tracer/rtl/otbn_trace_if.sv
+++ b/hw/ip/otbn/dv/tracer/rtl/otbn_trace_if.sv
@@ -166,7 +166,9 @@
logic any_ispr_read;
- assign any_ispr_read = (insn_dec_shared.ispr_rd_insn | insn_dec_shared.ispr_rs_insn) & insn_fetch_resp_valid;
+ assign any_ispr_read =
+ (insn_dec_shared.ispr_rd_insn | insn_dec_shared.ispr_rs_insn) & insn_fetch_resp_valid;
+
assign ispr_write[IsprMod] = |u_otbn_alu_bignum.mod_wr_en;
@@ -187,8 +189,8 @@
assign ispr_read[IsprAcc] = (any_ispr_read & (ispr_addr == IsprAcc)) | mac_bignum_en;
// For ISPR reads look at the ACC flops directly. For other ACC reads look at the `acc` signal in
// order to read ACC as 0 for the BN.MULQACC.Z instruction variant.
- assign ispr_read_data[IsprAcc] = (any_ispr_read & (ispr_addr == IsprAcc)) ? u_otbn_mac_bignum.acc_q :
- u_otbn_mac_bignum.acc;
+ assign ispr_read_data[IsprAcc] =
+ (any_ispr_read & (ispr_addr == IsprAcc)) ? u_otbn_mac_bignum.acc_q : u_otbn_mac_bignum.acc;
assign ispr_write[IsprRnd] = 1'b0;
assign ispr_write_data[IsprRnd] = '0;