diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-01-15 01:02:24 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-01-15 01:02:24 +0000 |
commit | 5f8b46053f284245514cfd72f8425500cd64f2df (patch) | |
tree | 0dfa32efadaf03205cdfcdab97321b7f1d75969b /sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch | |
parent | e4bfdb47132ba559d3f205c38c6fd05f3b84d1e5 (diff) |
move : sys-kernel/nvidia-drivers-dkms:0/390132 -> sys-kernel/nvidia-legacy-drivers-dkms
Diffstat (limited to 'sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch')
-rw-r--r-- | sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch b/sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch new file mode 100644 index 00000000..67172815 --- /dev/null +++ b/sys-kernel/nvidia-legacy-drivers-dkms/files/kernel-4.16.patch @@ -0,0 +1,33 @@ +diff --git a/kernel/common/inc/nv-linux.h b/kernel/common/inc/nv-linux.h +index 10fc418..22ef968 100644 +--- a/kernel/common/inc/nv-linux.h ++++ b/kernel/common/inc/nv-linux.h +@@ -175,7 +175,11 @@ static inline uid_t __kuid_val(kuid_t uid) + + #if defined(NV_VM_INSERT_PAGE_PRESENT) + #include <linux/pagemap.h> ++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0) + #include <linux/dma-mapping.h> ++#else ++#include <linux/dma-direct.h> ++#endif + #endif + + #if defined(CONFIG_SWIOTLB) && defined(NVCPU_AARCH64) +diff --git a/kernel/conftest.sh b/kernel/conftest.sh +index b23dbb4..42dc576 100755 +--- a/kernel/conftest.sh ++++ b/kernel/conftest.sh +@@ -1906,7 +1906,12 @@ compile_test() { + # Determine if the phys_to_dma function is present. + # + CODE=" ++ #include <linux/version.h> ++#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 16, 0) + #include <linux/dma-mapping.h> ++#else ++ #include <linux/dma-direct.h> ++#endif + void conftest_phys_to_dma(void) { + phys_to_dma(); + }" |