Skip to content

Commit

Permalink
[IDMA] Fixed missing callback for async response
Browse files Browse the repository at this point in the history
  • Loading branch information
Germain Haugou committed Apr 1, 2024
1 parent 0874b82 commit 761ab3e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pulp/idma/be/idma_be_axi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ IDmaBeAxi::IDmaBeAxi(vp::Component *idma, std::string itf_name, IdmaBeProducer *
this->be = be;

// Declare master port to AXI interface
idma->new_master_port(itf_name, &this->ico_itf);
this->ico_itf.set_resp_meth(&IDmaBeAxi::axi_response);
idma->new_master_port(itf_name, &this->ico_itf, this);

// Declare our own trace so that we can individually activate traces
this->traces.new_trace("trace", &this->trace, vp::DEBUG);
Expand Down

0 comments on commit 761ab3e

Please sign in to comment.