summarylogtreecommitdiffstats
path: root/kernel-4.16.patch
diff options
context:
space:
mode:
authorJonathon Fernyhough2021-04-01 18:03:18 +0100
committerJonathon Fernyhough2021-04-01 18:03:18 +0100
commitafa0e20e5137608a9aae299b9548e7960c189745 (patch)
tree1be02740d252ce115748aed46c24aa76bff14cf0 /kernel-4.16.patch
parent5a4f69deef81cea9a57aae6534b60f2c25c8d678 (diff)
downloadaur-afa0e20e5137608a9aae299b9548e7960c189745.tar.gz
Re-work to bring into line with nvidia
Diffstat (limited to 'kernel-4.16.patch')
-rw-r--r--kernel-4.16.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/kernel-4.16.patch b/kernel-4.16.patch
deleted file mode 100644
index 3bd6e3081a0e..000000000000
--- a/kernel-4.16.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-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
-
- #if defined(NV_LINUX_DMA_MAP_OPS_H_PRESENT)
- #include <linux/dma-map-ops.h>
-diff --git a/kernel/conftest.sh b/kernel/conftest.sh
-index b23dbb4..42dc576 100755
---- a/kernel/conftest.sh
-+++ b/kernel/conftest.sh
-@@ -2068,7 +2068,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();
- }"