diff --git a/lib/emac/src/emac_types.vhd b/lib/emac/src/emac_types.vhd index f768cd4..65aaa24 100644 --- a/lib/emac/src/emac_types.vhd +++ b/lib/emac/src/emac_types.vhd @@ -18,7 +18,6 @@ package emac_types is type tx_ctrl_in_t is record Gbps_en : std_logic; reset : std_logic; - tx_er : std_logic; tx_size : unsigned(15 downto 0); pkt_commit_en : std_logic; pkt_alloc_en : std_logic; diff --git a/lib/emac/src/pkt_gen.vhd b/lib/emac/src/pkt_gen.vhd index a84770f..ea051a5 100644 --- a/lib/emac/src/pkt_gen.vhd +++ b/lib/emac/src/pkt_gen.vhd @@ -80,7 +80,6 @@ host_state: tx_ctrl_in.pkt_commit_en <= '0'; tx_ctrl_in.reset <= '0'; tx_ctrl_in.Gbps_en <= '0'; - tx_ctrl_in.tx_er <= '0'; tx_ctrl_in.tx_size <= pkt_nbytes; fill_set <= '0'; fill_en <= '0';