summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-06-06 22:51:29 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-06-06 22:51:29 +0000
commit5ce0f2afec70a1d062b749e1bf7150c21d35281d (patch)
tree9ba4e9332dbc91ae270e4c7d534d04e97507d8c1
parent909085a0083fccae1c74d2c78dc8a34efc55a5cf (diff)
downloaddrm-5ce0f2afec70a1d062b749e1bf7150c21d35281d.tar.gz
define VM_DONTCOPY to zero if undefined
-rw-r--r--linux-core/i810_dma.c5
-rw-r--r--linux/i810_dma.c5
2 files changed, 10 insertions, 0 deletions
diff --git a/linux-core/i810_dma.c b/linux-core/i810_dma.c
index f041f209..2380a434 100644
--- a/linux-core/i810_dma.c
+++ b/linux-core/i810_dma.c
@@ -37,6 +37,11 @@
#include <linux/interrupt.h> /* For task queue support */
+/* in case we don't have a 2.3.99-pre6 kernel or later: */
+#ifndef VM_DONTCOPY
+#define VM_DONTCOPY 0
+#endif
+
#define I810_BUF_FREE 2
#define I810_BUF_CLIENT 1
#define I810_BUF_HARDWARE 0
diff --git a/linux/i810_dma.c b/linux/i810_dma.c
index f041f209..2380a434 100644
--- a/linux/i810_dma.c
+++ b/linux/i810_dma.c
@@ -37,6 +37,11 @@
#include <linux/interrupt.h> /* For task queue support */
+/* in case we don't have a 2.3.99-pre6 kernel or later: */
+#ifndef VM_DONTCOPY
+#define VM_DONTCOPY 0
+#endif
+
#define I810_BUF_FREE 2
#define I810_BUF_CLIENT 1
#define I810_BUF_HARDWARE 0