From 431490a96b48f936921e650fb8f97e8949a83c83 Mon Sep 17 00:00:00 2001
From: Erik Kooistra <kooistra@astron.nl>
Date: Wed, 1 Oct 2014 07:40:58 +0000
Subject: [PATCH] Remove g_soft, because the true distinction is made via
 g_nof_gx which needs  16 for soft XAUI.

---
 .../ip_stratixiv/ip_stratixiv_gxb_reconfig_v111.vhd          | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig_v111.vhd b/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig_v111.vhd
index 4819fb0e7b..fb124a01ed 100644
--- a/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig_v111.vhd
+++ b/libraries/technology/ip_stratixiv/ip_stratixiv_gxb_reconfig_v111.vhd
@@ -29,7 +29,6 @@ USE technology_lib.technology_pkg.ALL;
 
 ENTITY ip_stratixiv_gxb_reconfig_v111 IS
   GENERIC (
-    g_soft          : BOOLEAN := FALSE;
     g_nof_gx        : NATURAL;
     g_fromgxb_bus_w : NATURAL := 17;
     g_togxb_bus_w   : NATURAL := 4
@@ -46,7 +45,7 @@ END ip_stratixiv_gxb_reconfig_v111;
 ARCHITECTURE str OF ip_stratixiv_gxb_reconfig_v111 IS
 BEGIN
 
-  gen_gxb_reconfig_4 : IF g_nof_gx <= 4 AND g_soft = FALSE GENERATE
+  gen_gxb_reconfig_4 : IF g_nof_gx <= 4 GENERATE
     u_gxb_reconfig_4 : ENTITY work.ip_stratixiv_gxb_reconfig_v111_4
     PORT MAP (
       reconfig_clk        => reconfig_clk,
@@ -56,7 +55,7 @@ BEGIN
     );
   END GENERATE;
         
-  gen_gxb_reconfig_16 : IF g_nof_gx > 12 AND g_nof_gx <= 16 AND g_soft = TRUE GENERATE
+  gen_gxb_reconfig_16 : IF g_nof_gx > 12 AND g_nof_gx <= 16 GENERATE
     u_gxb_reconfig_16 : ENTITY work.ip_stratixiv_gxb_reconfig_v111_16
     PORT MAP (
       reconfig_clk        => reconfig_clk,
-- 
GitLab