Skip to content

Commit 4290209

Browse files
Fix inferred latch and sensitivity list miss (#298)
1 parent cf9dfbe commit 4290209

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

hdl/ip/vhd/espi/peripheral_channel/uart_channel_top.vhd

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ begin
109109
-- avail:
110110
-- if we read down to empty, move to not avail
111111

112-
orphan_timer: process(clk)
112+
orphan_timer: process(clk, reset)
113113
begin
114114
if reset then
115115
fifo_thresh_timer <= (others => '0');

hdl/ip/vhd/espi/txn_layer/link_to_txn_bridge.vhd

+1
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,7 @@ qspi_resp_fifo: entity work.dcfifo_xpm
135135
-- NORMAL MODE
136136
txn_cmd.valid <= not qspi_cmd_slow_rempty;
137137
txn_cmd.data <= qspi_cmd_slow_rdata;
138+
gen_cmd.ready <= '0';
138139
-- we don't drive qspi_cmd here b/c it's a fast signal
139140
qspi_cmd_rdack <= txn_cmd.valid and txn_cmd.ready;
140141
gen_resp.valid <= '0';

0 commit comments

Comments
 (0)