Skip to content

Commit

Permalink
Removing useless parameters from structs
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Mar 21, 2024
1 parent 22942d9 commit f6c16a2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions hw/carfield_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ typedef struct packed {
islands_properties_t spatz;
islands_properties_t pulp;
islands_properties_t secured;
islands_properties_t secured_idma;
islands_properties_t mbox;
} islands_cfg_t;

Expand Down Expand Up @@ -326,8 +325,7 @@ localparam islands_cfg_t CarfieldIslandsCfg = '{
spatz: '{SpatzClusterEnable, SpatzClusterBase, SpatzClusterSize},
pulp: '{PulpClusterEnable, PulpClusterBase, PulpClusterSize},
secured: '{SecurityIslandEnable, SecurityIslandBase, SecurityIslandSize},
mbox: '{MailboxEnable, MailboxBase, MailboxSize},
secured_idma: '{SecurityIslandEnable, SecurityIslandBase, SecurityIslandSize}
mbox: '{MailboxEnable, MailboxBase, MailboxSize}
};

localparam int unsigned CarfieldAxiNumSlaves = gen_num_axi_slave(CarfieldIslandsCfg);
Expand Down

0 comments on commit f6c16a2

Please sign in to comment.