From 1a0f59f38dab795352f2f0093cec7bd81f465769 Mon Sep 17 00:00:00 2001
From: Dimitris Lampridis <dimitris.lampridis@cern.ch>
Date: Mon, 29 Oct 2018 11:00:05 +0100
Subject: [PATCH] wb/xwb_register_link: drive unused output to zero to reduce
 warnings

---
 modules/wishbone/wb_crossbar/xwb_register_link.vhd | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/wishbone/wb_crossbar/xwb_register_link.vhd b/modules/wishbone/wb_crossbar/xwb_register_link.vhd
index 34bd3d8..dd8ef51 100644
--- a/modules/wishbone/wb_crossbar/xwb_register_link.vhd
+++ b/modules/wishbone/wb_crossbar/xwb_register_link.vhd
@@ -6,7 +6,7 @@
 -- Author     : Wesley W. Terpstra
 -- Company    : GSI
 -- Created    : 2013-12-16
--- Last update: 2016-04-12
+-- Last update: 2018-10-29
 -- Platform   : FPGA-generic
 -- Standard   : VHDL'93
 -------------------------------------------------------------------------------
@@ -75,6 +75,7 @@ begin
   slave_o.ack   <= r_ack;	
   slave_o.err   <= r_err;
   slave_o.dat   <= r_dat; 
+  slave_o.rty   <= '0';
 
   s_pop         <= not master_i.stall;
   s_push        <= slave_i.cyc and slave_i.stb and not s_full;
-- 
GitLab