summaryrefslogtreecommitdiff
path: root/linux/drmP.h
diff options
context:
space:
mode:
authorMichel Daenzer <michel@daenzer.net>2002-02-02 17:03:51 +0000
committerMichel Daenzer <michel@daenzer.net>2002-02-02 17:03:51 +0000
commit65d25572deec33b7da13c211bf0aa78c361f535a (patch)
treead4f38469cd6cbb503d08a15374e50eb950fb087 /linux/drmP.h
parent44aa4d6297874022a4f5a49ea24f2d052584d3dc (diff)
wrapper for ioremap_nocache() like for ioremap() (Paul Mundt)
Diffstat (limited to 'linux/drmP.h')
-rw-r--r--linux/drmP.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/drmP.h b/linux/drmP.h
index 7557fdc9..85a6a06f 100644
--- a/linux/drmP.h
+++ b/linux/drmP.h
@@ -180,6 +180,9 @@
#define DRM_IOREMAP(map) \
(map)->handle = DRM(ioremap)( (map)->offset, (map)->size )
+#define DRM_IOREMAP_NOCACHE(map) \
+ (map)->handle = DRM(ioremap_nocache)((map)->offset, (map)->size)
+
#define DRM_IOREMAPFREE(map) \
do { \
if ( (map)->handle && (map)->size ) \
@@ -622,6 +625,7 @@ extern unsigned long DRM(alloc_pages)(int order, int area);
extern void DRM(free_pages)(unsigned long address, int order,
int area);
extern void *DRM(ioremap)(unsigned long offset, unsigned long size);
+extern void *DRM(ioremap_nocache)(unsigned long offset, unsigned long size);
extern void DRM(ioremapfree)(void *pt, unsigned long size);
#if __REALLY_HAVE_AGP