Commit 42e9d234 authored by Maciej Lipinski's avatar Maciej Lipinski

[swcore/rtu/nic] getting rid of WARNIGNS regarding sensitivity-list-args missing

parent 00d5427c
......@@ -469,7 +469,7 @@ begin
-------------------------------------------------------------------------------
-- helper process for producing the RX fabric data request signal (combinatorial)
-------------------------------------------------------------------------------
gen_rx_dreq : process(rx_dreq_mask, buf_grant_i, rx_rdreg_toggle, fab_in, regs_i)
gen_rx_dreq : process(rx_dreq_mask, buf_grant_i, rx_rdreg_toggle, fab_in, regs_i, state)
begin
-- make sure we don't have any incoming data when the reception is masked (e.g.
-- the NIC is updating the descriptors of finishing the memory write.
......
......@@ -190,7 +190,7 @@ begin
end process;
p_gen_mem_addr : process(bucket_entry, hash_i, lookup_state, start_i)
p_gen_mem_addr : process(bucket_entry, hash_i, lookup_state, start_i, hash_reg)
begin
if(start_i = '1' and lookup_state = IDLE) then
mem_addr <= hash_i & "00";
......
......@@ -642,7 +642,8 @@ begin
-- scaling of the number of ports
p_pcr_registers : process(clk_sys_i)
begin
if(rst_n_i = '0') then
if rising_edge(clk_sys_i) then
if(rst_n_i = '0') then
regs_towb.pcr_learn_en_i <= '0';
regs_towb.pcr_pass_all_i <= '0';
......@@ -657,8 +658,8 @@ begin
pcr_prio_val <= (others => (others => '0'));
pcr_b_unrec <= (others => '0');
else
if rising_edge(clk_sys_i) then
else
regs_towb.pcr_learn_en_i <= pcr_learn_en(current_pcr);
regs_towb.pcr_pass_all_i <= pcr_pass_all(current_pcr);
regs_towb.pcr_pass_bpdu_i <= pcr_pass_bpdu(current_pcr);
......
......@@ -329,7 +329,7 @@ begin -- syn
-- MUXes
gen_arbiter : for i in 0 to g_num_ports-1 generate
process(ports, arb_req, arb_grant, pg_done, pg_nomem,arb_req_d0)
process(ports, arb_req, arb_grant, pg_done, pg_nomem,arb_req_d0, grant_ob_d0, grant_ib_d0)
begin
ports(i).grant_ib_d(0) <= arb_grant(2 * i);
ports(i).grant_ob_d(0) <= arb_grant(2 * i + 1);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment