Skip to content

Commit

Permalink
Merge pull request #305 from pulp-platform/micprog/lint
Browse files Browse the repository at this point in the history
Fix spyglass lint error
  • Loading branch information
thommythomaso committed May 11, 2023
2 parents 56533cb + ecd376c commit f24b1fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axi_id_serialize.sv
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ module axi_id_serialize #(
/// Number of Entries in the explicit ID map (default: None)
parameter int unsigned IdMapNumEntries = 32'd0,
/// Explicit ID map; index [0] in each entry is the input ID to match, index [1] the output ID.
parameter int unsigned IdMap [IdMapNumEntries-1:0][0:1] = '{default: '{32'b0, 32'b0}}
parameter int unsigned IdMap [IdMapNumEntries-1:0][0:1] = '{default: {32'b0, 32'b0}}
) (
/// Rising-edge clock of both ports
input logic clk_i,
Expand Down

0 comments on commit f24b1fa

Please sign in to comment.