[PATCH 3/3] dma: Transfer dma_ops should use DMA address types

2022-10-07 Thread Andrew Davis
DMA operations should function on DMA addresses, not virtual addresses. Although these are usually the same in U-Boot, it is more correct to be explicit with our types here. Signed-off-by: Andrew Davis --- drivers/dma/dma-uclass.c | 2 +- drivers/dma/sandbox-dma-test.c | 4 ++-- drivers/

Re: [PATCH 3/3] dma: Transfer dma_ops should use DMA address types

2022-10-18 Thread Tom Rini
On Fri, Oct 07, 2022 at 12:11:13PM -0500, Andrew Davis wrote: > DMA operations should function on DMA addresses, not virtual addresses. > Although these are usually the same in U-Boot, it is more correct > to be explicit with our types here. > > Signed-off-by: Andrew Davis Applied to u-boot/mas