summaryrefslogtreecommitdiffstats
path: root/include/asm-mips/mman.h
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-02-04 23:09:08 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-02-04 23:09:08 +0000
commit272c4b57f43f435f34bb7fbf838aafccc7f9aa9f (patch)
treec2c8058e563c66b9387b6d0a7614a0e0bc12606c /include/asm-mips/mman.h
parentaec732b94b2b677d98db620bbd8a50f942965b15 (diff)
Fix stupid braino in msync(2) flags definitions.
Diffstat (limited to 'include/asm-mips/mman.h')
-rw-r--r--include/asm-mips/mman.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-mips/mman.h b/include/asm-mips/mman.h
index f95aec1e6..752013d3a 100644
--- a/include/asm-mips/mman.h
+++ b/include/asm-mips/mman.h
@@ -46,9 +46,9 @@
/*
* Flags for msync
*/
-#define MS_SYNC 0 /* synchronous memory sync */
-#define MS_ASYNC 1 /* sync memory asynchronously */
-#define MS_INVALIDATE 2 /* invalidate mappings & caches */
+#define MS_SYNC 0x0001 /* synchronous memory sync */
+#define MS_ASYNC 0x0002 /* sync memory asynchronously */
+#define MS_INVALIDATE 0x0004 /* invalidate mappings & caches */
/*
* Flags for mlockall