summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-02-04 23:12:26 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-02-04 23:12:26 +0000
commit02407068c4c57765445da770023267a42a20a285 (patch)
tree10227c49b55eb142f7d4bc7e45b5689f858a4953
parent272c4b57f43f435f34bb7fbf838aafccc7f9aa9f (diff)
Fix the fix.
-rw-r--r--include/asm-mips/mman.h6
-rw-r--r--include/asm-mips64/mman.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/include/asm-mips/mman.h b/include/asm-mips/mman.h
index 752013d3a..e408affff 100644
--- a/include/asm-mips/mman.h
+++ b/include/asm-mips/mman.h
@@ -46,9 +46,9 @@
/*
* Flags for msync
*/
-#define MS_SYNC 0x0001 /* synchronous memory sync */
-#define MS_ASYNC 0x0002 /* sync memory asynchronously */
-#define MS_INVALIDATE 0x0004 /* invalidate mappings & caches */
+#define MS_ASYNC 0x0001 /* sync memory asynchronously */
+#define MS_INVALIDATE 0x0002 /* invalidate mappings & caches */
+#define MS_SYNC 0x0004 /* synchronous memory sync */
/*
* Flags for mlockall
diff --git a/include/asm-mips64/mman.h b/include/asm-mips64/mman.h
index 518811023..edeaad87e 100644
--- a/include/asm-mips64/mman.h
+++ b/include/asm-mips64/mman.h
@@ -1,4 +1,4 @@
-/* $Id: mman.h,v 1.1 1999/08/19 22:56:34 ralf Exp $
+/* $Id: mman.h,v 1.2 2000/02/04 23:09:08 ralf Exp $
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file "COPYING" in the main directory of this archive
@@ -45,9 +45,9 @@
/*
* Flags for msync
*/
-#define MS_SYNC 0x01 /* synchronous memory sync */
-#define MS_ASYNC 0x02 /* sync memory asynchronously */
-#define MS_INVALIDATE 0x04 /* invalidate mappings & caches */
+#define MS_ASYNC 0x0001 /* sync memory asynchronously */
+#define MS_INVALIDATE 0x0002 /* invalidate mappings & caches */
+#define MS_SYNC 0x0004 /* synchronous memory sync */
/*
* Flags for mlockall