Skip to content

Commit 2ee69e9

Browse files
committed
lint: Fix linting rules
1 parent aa1af9e commit 2ee69e9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

hw/snitch/src/snitch.sv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,8 +281,8 @@ module snitch import snitch_pkg::*; import riscv_instr::*; #(
281281
dm::dcsr_t dcsr_d, dcsr_q;
282282
logic [31:0] dpc_d, dpc_q;
283283
logic [31:0] dscratch_d, dscratch_q;
284-
logic debug_d, debug_q;
285284

285+
logic debug_d, debug_q;
286286
// Multicast mask
287287
logic [31:0] csr_mcast_d, csr_mcast_q;
288288

hw/snitch_cluster/src/snitch_cluster.sv

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,8 @@ module snitch_cluster
11511151
user_t cluster_user;
11521152
// Atomic ID, needs to be unique ID of cluster
11531153
// cluster_id + HartIdOffset + 1 (because 0 is for non-atomic masters)
1154-
assign cluster_user = (core_to_axi_req.q.mask << AtomicIdWidth) | ((hart_base_id_i / NrCores) + (hart_base_id_i % NrCores) + 1'b1);
1154+
assign cluster_user = (core_to_axi_req.q.mask << AtomicIdWidth) |
1155+
((hart_base_id_i / NrCores) + (hart_base_id_i % NrCores) + 1'b1);
11551156

11561157
reqrsp_mux #(
11571158
.NrPorts (NrCores),

0 commit comments

Comments
 (0)