pub type DmaAddress = dma_addr_t;
Expand description
DMA address type.
Represents a bus address used for Direct Memory Access (DMA) operations.
This is an alias of the kernel’s dma_addr_t
, which may be u32
or u64
depending on
CONFIG_ARCH_DMA_ADDR_T_64BIT
.
Note that this may be u64
even on 32-bit architectures.