Skip to content

Commit

Permalink
test:dma: change the name of dma config flag error_callback_en
Browse files Browse the repository at this point in the history
Change it as error_callback_dis to avoid confusion.
To align with corresponding changes in zephyr DMA APIs.

Signed-off-by: Dong Wang <[email protected]>
  • Loading branch information
kwd-doodling committed May 6, 2024
1 parent 7b4c256 commit 84c9274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zephyr/iut_test/test_zephyr/dma/test_dma_m2m.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ static int test_dma_m2m(int argc, char **argv)
dma_cfg.dest_burst_length = blen;
dma_cfg.dma_callback = test_done;
dma_cfg.complete_callback_en = 1;
dma_cfg.error_callback_en = 1;
dma_cfg.error_callback_dis = 1;
dma_cfg.block_count = 1;
dma_cfg.head_block = &dma_block_cfg;

Expand Down

0 comments on commit 84c9274

Please sign in to comment.