[PATCH v2] linux/igb_uio: fix build with kernel 5.18+

2022-10-09 Thread Georg Müller
(). dma_set_mask_and_coherent() exists since kernel 3.13. Signed-off-by: Georg Müller --- v2: - add Signed-off-by --- linux/igb_uio/igb_uio.c | 8 +--- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/linux/igb_uio/igb_uio.c b/linux/igb_uio/igb_uio.c index 33e0e02..aea67da 100644 --- a/linux/igb_uio

[PATCH] linux/igb_uio: fix build with kernel 5.18+

2022-10-06 Thread Georg Müller
pci_set_dma_mask() and pci_set_consistent_dma_mask() were removed with kernel 5.18. They both were just wrappers for dma_set_mask() and dma_set_coherent_mask(). Instead, use dma_set_mask_and_coherent(), which is a combination of dma_set_mask() and dma_set_coherent_mask(). dma_set_mask_and_coheren