Skip to content

Commit

Permalink
Add 'GPUAsync Support' flag to /proc/datadev_N
Browse files Browse the repository at this point in the history
  • Loading branch information
JJL772 committed Jan 9, 2025
1 parent 326c945 commit ebaf294
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions common/driver/dma_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -1328,6 +1328,11 @@ int Dma_SeqShow(struct seq_file *s, void *v) {
seq_printf(s, "-------- DMA Kernel Driver General --------\n");
seq_printf(s, " DMA Driver's Git Version : " GITV "\n");
seq_printf(s, " DMA Driver's API Version : 0x%x\n", DMA_VERSION);
#ifdef DATA_GPU
seq_printf(s, " GPUAsync Support : Enabled\n");
#else
seq_printf(s, " GPUAsync Support : Disabled\n");
#endif
seq_printf(s, "\n");
seq_printf(s, "---- Read Buffers (Firmware->Software) ----\n");
seq_printf(s, " Buffer Count : %u\n", dev->rxBuffers.count);
Expand Down

0 comments on commit ebaf294

Please sign in to comment.