Re: [PATCH 1/4] dma: factor out dma map generic implementations into file

2023-12-05 Thread Ahmad Fatoum
On 05.12.23 09:37, Sascha Hauer wrote: > On Wed, Nov 29, 2023 at 07:17:55AM +0100, Ahmad Fatoum wrote: >> In preparation for adding optional debugging code for the DMA mapping >> API, move the definition out of the header file into a source file. >> >> Signed-off-by: Ahmad Fatoum >> --- >> driver

Re: [PATCH 1/4] dma: factor out dma map generic implementations into file

2023-12-05 Thread Sascha Hauer
On Wed, Nov 29, 2023 at 07:17:55AM +0100, Ahmad Fatoum wrote: > In preparation for adding optional debugging code for the DMA mapping > API, move the definition out of the header file into a source file. > > Signed-off-by: Ahmad Fatoum > --- > drivers/dma/Makefile | 1 + > drivers/dma/map.c

[PATCH 1/4] dma: factor out dma map generic implementations into file

2023-11-28 Thread Ahmad Fatoum
In preparation for adding optional debugging code for the DMA mapping API, move the definition out of the header file into a source file. Signed-off-by: Ahmad Fatoum --- drivers/dma/Makefile | 1 + drivers/dma/map.c| 32 +++ include/dma.h| 61 ++--