mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-19 00:01:01 -04:00
Merge tag 'dma-mapping-6.19-2025-12-10' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux
Pull dma-mapping fixes from Marek Szyprowski: - last minute fix for missing parenthesis in recently merged code (Hans de Goede) - removal of excessive, non-fatal warnings (Dave Kleikamp) * tag 'dma-mapping-6.19-2025-12-10' of git://git.kernel.org/pub/scm/linux/kernel/git/mszyprowski/linux: dma-mapping: Fix DMA_BIT_MASK() macro being broken dma/pool: eliminate alloc_pages warning in atomic_pool_expand
This commit is contained in:
@@ -90,7 +90,7 @@
|
||||
*/
|
||||
#define DMA_MAPPING_ERROR (~(dma_addr_t)0)
|
||||
|
||||
#define DMA_BIT_MASK(n) GENMASK_ULL(n - 1, 0)
|
||||
#define DMA_BIT_MASK(n) GENMASK_ULL((n) - 1, 0)
|
||||
|
||||
struct dma_iova_state {
|
||||
dma_addr_t addr;
|
||||
|
||||
Reference in New Issue
Block a user