From e4d70d2f12b05aa8a65d12f3b60ad6a1a5cb3c90 Mon Sep 17 00:00:00 2001 From: Erik Kooistra <kooistra@astron.nl> Date: Thu, 12 Feb 2015 09:08:38 +0000 Subject: [PATCH] Remove unused IEEE.STD_LOGIC_UNSIGNED, if necessary then should use IEEE.numeric_std. --- libraries/io/tr_nonbonded/src/vhdl/tr_nonbonded.vhd | 5 ++--- .../technology/transceiver/sim_transceiver_deserializer.vhd | 3 +-- libraries/technology/transceiver/sim_transceiver_gx.vhd | 3 +-- .../technology/transceiver/sim_transceiver_serializer.vhd | 3 +-- .../technology/transceiver/tech_transceiver_gx_stratixiv.vhd | 3 +-- 5 files changed, 6 insertions(+), 11 deletions(-) diff --git a/libraries/io/tr_nonbonded/src/vhdl/tr_nonbonded.vhd b/libraries/io/tr_nonbonded/src/vhdl/tr_nonbonded.vhd index 2245c27063..827fca955a 100644 --- a/libraries/io/tr_nonbonded/src/vhdl/tr_nonbonded.vhd +++ b/libraries/io/tr_nonbonded/src/vhdl/tr_nonbonded.vhd @@ -21,9 +21,8 @@ -------------------------------------------------------------------------------- LIBRARY IEEE, common_lib, dp_lib, technology_lib, tech_transceiver_lib; -USE IEEE.STD_LOGIC_1164.ALL; -USE IEEE.STD_LOGIC_UNSIGNED.ALL; -USE IEEE.NUMERIC_STD.ALL; +USE IEEE.std_logic_1164.ALL; +USE IEEE.numeric_std.ALL; USE common_lib.common_pkg.ALL; USE dp_lib.dp_stream_pkg.ALL; USE technology_lib.technology_select_pkg.ALL; diff --git a/libraries/technology/transceiver/sim_transceiver_deserializer.vhd b/libraries/technology/transceiver/sim_transceiver_deserializer.vhd index 7b8582740b..8080af02c1 100644 --- a/libraries/technology/transceiver/sim_transceiver_deserializer.vhd +++ b/libraries/technology/transceiver/sim_transceiver_deserializer.vhd @@ -28,8 +28,7 @@ LIBRARY IEEE, common_lib; -USE IEEE.STD_LOGIC_1164.ALL; -USE IEEE.STD_LOGIC_UNSIGNED.ALL; +USE IEEE.std_logic_1164.ALL; USE common_lib.common_pkg.ALL; ENTITY sim_transceiver_deserializer IS diff --git a/libraries/technology/transceiver/sim_transceiver_gx.vhd b/libraries/technology/transceiver/sim_transceiver_gx.vhd index 5c53913c1f..820b78a6ba 100644 --- a/libraries/technology/transceiver/sim_transceiver_gx.vhd +++ b/libraries/technology/transceiver/sim_transceiver_gx.vhd @@ -28,8 +28,7 @@ -- None LIBRARY IEEE, common_lib, dp_lib; -USE IEEE.STD_LOGIC_1164.ALL; -USE IEEE.STD_LOGIC_UNSIGNED.ALL; +USE IEEE.std_logic_1164.ALL; USE common_lib.common_pkg.ALL; USE dp_lib.dp_stream_pkg.ALL; diff --git a/libraries/technology/transceiver/sim_transceiver_serializer.vhd b/libraries/technology/transceiver/sim_transceiver_serializer.vhd index 237c626b14..4d8598b1ab 100644 --- a/libraries/technology/transceiver/sim_transceiver_serializer.vhd +++ b/libraries/technology/transceiver/sim_transceiver_serializer.vhd @@ -68,8 +68,7 @@ LIBRARY IEEE, common_lib; -USE IEEE.STD_LOGIC_1164.ALL; -USE IEEE.STD_LOGIC_UNSIGNED.ALL; +USE IEEE.std_logic_1164.ALL; USE common_lib.common_pkg.ALL; ENTITY sim_transceiver_serializer IS diff --git a/libraries/technology/transceiver/tech_transceiver_gx_stratixiv.vhd b/libraries/technology/transceiver/tech_transceiver_gx_stratixiv.vhd index e6425c1414..cbac04991a 100644 --- a/libraries/technology/transceiver/tech_transceiver_gx_stratixiv.vhd +++ b/libraries/technology/transceiver/tech_transceiver_gx_stratixiv.vhd @@ -24,8 +24,7 @@ LIBRARY ip_stratixiv_transceiver_lib; LIBRARY IEEE, common_lib, dp_lib; -USE IEEE.STD_LOGIC_1164.ALL; -USE IEEE.STD_LOGIC_UNSIGNED.ALL; +USE IEEE.std_logic_1164.ALL; USE work.tech_transceiver_component_pkg.ALL; USE common_lib.common_pkg.ALL; USE dp_lib.dp_stream_pkg.ALL; -- GitLab