From 39320ef48bdcb2c19c3540cdc921aeb3961ff4a3 Mon Sep 17 00:00:00 2001 From: Lars-Peter Clausen Date: Sun, 13 Sep 2015 17:32:24 +0200 Subject: [PATCH] axi_dmac: Fix source pause signal For the source controller use the pause signal that has been properly transferred to the source clock domain rather than the pause signal from the request clock domain. Signed-off-by: Lars-Peter Clausen --- library/axi_dmac/request_arb.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/axi_dmac/request_arb.v b/library/axi_dmac/request_arb.v index a6f7afd93..0e2958e3e 100644 --- a/library/axi_dmac/request_arb.v +++ b/library/axi_dmac/request_arb.v @@ -618,7 +618,7 @@ dmac_src_mm_axi #( .m_axi_aclk(m_src_axi_aclk), .m_axi_aresetn(src_resetn), - .pause(pause), + .pause(src_pause), .enable(src_enable), .enabled(src_enabled), .sync_id(src_sync_id),