Commit e6fbe164 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

i40e_bm: fix compiler error in debug message

parent fc71ea98
...@@ -135,7 +135,7 @@ void host_mem_cache::issue_mem_op(mem_op &op) { ...@@ -135,7 +135,7 @@ void host_mem_cache::issue_mem_op(mem_op &op) {
#ifdef DEBUG_HMC #ifdef DEBUG_HMC
std::cerr << "hmc issue_mem_op: hmc_addr=" << addr std::cerr << "hmc issue_mem_op: hmc_addr=" << addr
<< " dma_addr=" << op.dma_addr << " len=" << op.len << std::endl; << " dma_addr=" << op.dma_addr_ << " len=" << op.len_ << std::endl;
#endif #endif
runner->IssueDma(op); runner->IssueDma(op);
} }
......
...@@ -430,7 +430,7 @@ void lan_queue_tx::do_writeback(uint32_t first_idx, uint32_t first_pos, ...@@ -430,7 +430,7 @@ void lan_queue_tx::do_writeback(uint32_t first_idx, uint32_t first_pos,
dma->dma_addr_ = hwb_addr; dma->dma_addr_ = hwb_addr;
#ifdef DEBUG_LAN #ifdef DEBUG_LAN
log << " hwb=" << *((uint32_t *)dma->data) << logger::endl; log << " hwb=" << *((uint32_t *)dma->data_) << logger::endl;
#endif #endif
runner->IssueDma(*dma); runner->IssueDma(*dma);
} }
......
Markdown is supported
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