Commit 638f605b authored by Tristan Gingold's avatar Tristan Gingold Committed by Tristan Gingold

z091_01_wb_master: minor style improvement

Remove a useless sensitivity
parent 5c7ee107
......@@ -635,7 +635,7 @@ begin
end if;
end process fsm_out;
-------------------------------------------------------------------------------
data_path : process(wb_clk, wb_rst, wbm_ack)
data_path : process(wb_clk, wb_rst)
begin
if(wb_rst = '1') then
......@@ -658,8 +658,7 @@ begin
bar_dec_int <= (others => '0');
io_wr_int <= '0';
else
if(wb_clk'event and wb_clk = '1') then
elsif(wb_clk'event and wb_clk = '1') then
if(decode_header = "01") then
-- decode which BAR was hit
......@@ -782,7 +781,6 @@ begin
else
tx_fifo_c_head_in <= (others => '0');
end if;
end if;
end if;
end process data_path;
-------------------------------------------------------------------------------
......
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