On Tue, 8 Oct 2024 at 07:54, Akihiko Odaki <akihiko.od...@daynix.com> wrote: > > Ensure the function names match. > > Signed-off-by: Akihiko Odaki <akihiko.od...@daynix.com> > --- > include/sysemu/dma.h | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/include/sysemu/dma.h b/include/sysemu/dma.h > index a1ac5bc1b543..e132ece4510d 100644 > --- a/include/sysemu/dma.h > +++ b/include/sysemu/dma.h > @@ -189,7 +189,7 @@ MemTxResult dma_memory_set(AddressSpace *as, dma_addr_t > addr, > uint8_t c, dma_addr_t len, MemTxAttrs attrs); > > /** > - * address_space_map: Map a physical memory region into a host virtual > address. > + * dma_space_map: Map a physical memory region into a host virtual address.
The function is dma_memory_map ... > * > * May map a subset of the requested range, given by and returned in @plen. > * May return %NULL and set *@plen to zero(0), if resources needed to perform > @@ -216,8 +216,7 @@ static inline void *dma_memory_map(AddressSpace *as, > } > > /** > - * address_space_unmap: Unmaps a memory region previously mapped > - * by dma_memory_map() > + * dma_space_unmap: Unmaps a memory region previously mapped by > dma_memory_map() ...and this one is dma_memory_unmap. > * > * Will also mark the memory as dirty if @dir == %DMA_DIRECTION_FROM_DEVICE. > * @access_len gives the amount of memory that was actually read or written thanks -- PMM