diff options
author | gorcunov@gmail.com <gorcunov@gmail.com> | 2008-03-28 10:56:57 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:33 -0400 |
commit | 6b6891f9c545ccd45d6d8ddfd33ce27c22c271a7 (patch) | |
tree | 3cfd4cfda9363eac5e9126978e3f2d6dd8b55d32 /include/asm-x86/vm86.h | |
parent | 6093015db2bd9e70cf20cdd23be1a50733baafdd (diff) |
x86: cleanup - rename VM_MASK to X86_VM_MASK
This patch renames VM_MASK to X86_VM_MASK (which
in turn defined as alias to X86_EFLAGS_VM) to better
distinguish from virtual memory flags. We can't just
use X86_EFLAGS_VM instead because it is also used
for conditional compilation
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/vm86.h')
-rw-r--r-- | include/asm-x86/vm86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asm-x86/vm86.h b/include/asm-x86/vm86.h index a2be241ed036..f5f3dc479c34 100644 --- a/include/asm-x86/vm86.h +++ b/include/asm-x86/vm86.h | |||
@@ -17,9 +17,9 @@ | |||
17 | #define IOPL_MASK 0x00003000 | 17 | #define IOPL_MASK 0x00003000 |
18 | #define NT_MASK 0x00004000 | 18 | #define NT_MASK 0x00004000 |
19 | #ifdef CONFIG_VM86 | 19 | #ifdef CONFIG_VM86 |
20 | #define VM_MASK 0x00020000 | 20 | #define X86_VM_MASK X86_EFLAGS_VM |
21 | #else | 21 | #else |
22 | #define VM_MASK 0 /* ignored */ | 22 | #define X86_VM_MASK 0 /* No VM86 support */ |
23 | #endif | 23 | #endif |
24 | #define AC_MASK 0x00040000 | 24 | #define AC_MASK 0x00040000 |
25 | #define VIF_MASK 0x00080000 /* virtual interrupt flag */ | 25 | #define VIF_MASK 0x00080000 /* virtual interrupt flag */ |