Skip to content
Snippets Groups Projects
Commit 225d489a authored by Wesley W. Terpstra's avatar Wesley W. Terpstra
Browse files

eb2: fix bug pushing all access to config space

parent 739df628
Branches
Tags
No related merge requests found
......@@ -217,7 +217,7 @@ begin
when S_WRITE =>
-- Writes set to eb_wbm_fifo do not generate output
if r_rx_cyc_hdr.BCA_CFG = '1' then
if r_rx_cyc_hdr.WCA_CFG = '1' then
r_cfg_stb_o <= '1';
else
r_wbm_stb_o <= '1';
......@@ -262,7 +262,7 @@ begin
when S_READ =>
-- Get data from either cfg or wbm fifos
r_tag_stb_o <= '1';
if r_rx_cyc_hdr.BCA_CFG = '1' then
if r_rx_cyc_hdr.RCA_CFG = '1' then
r_cfg_stb_o <= '1';
r_tag_dat_o <= c_tag_cfg_req;
else
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment