about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/ax99100/kernel-5.18-pci_free_consistent-pci_alloc_consistent.patch
blob: 05ec0cfad222de88925396ce0f5fbdb2077f7d9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff -pNaru5 a/ax99100_sp.h b/ax99100_sp.h
--- ax99100_sp.h	2022-06-07 16:55:26.621034945 -0400
+++ ax99100_sp.h	2022-06-07 16:58:32.488989767 -0400
@@ -255,5 +255,10 @@ struct custom_eeprom {
 #define _INLINE_
 #endif
 
 #define DEFAULT99100_BAUD 115200
 #endif
+
+/* #if LINUX_VERSION_CODE >= KERNEL_VERSION(5,18,0) */
+#define pci_alloc_consistent(hwdev,size,dma_handle) dma_alloc_coherent(&hwdev->dev, size, dma_handle, GFP_ATOMIC)
+#define pci_free_consistent(hwdev,size,vaddr,dma_handle) dma_free_coherent(&hwdev->dev, size, vaddr, dma_handle)
+/* #endif */