From cdf005ab8389c7941a09cebbd9fdbd9b32450654 Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Mon, 17 Jul 2017 14:47:35 +0200 Subject: [PATCH] axi_dmac: request_arb: Add missing req_gen_{valid,ready} signal declaration Make sure the req_gen_valid and req_gen_ready signals are declared before they are used. Strictly speaking the current code is correct and synthesis correctly, but declaring the signals make the intentions of the code more explicit. Signed-off-by: Lars-Peter Clausen --- library/axi_dmac/request_arb.v | 2 ++ 1 file changed, 2 insertions(+) diff --git a/library/axi_dmac/request_arb.v b/library/axi_dmac/request_arb.v index 1a7368027..c8cba6e39 100644 --- a/library/axi_dmac/request_arb.v +++ b/library/axi_dmac/request_arb.v @@ -200,6 +200,8 @@ wire src_pause; wire src_sync_id; wire src_sync_id_ret; +wire req_gen_valid; +wire req_gen_ready; wire req_dest_valid; wire req_dest_ready; wire req_dest_empty;