aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/vm86.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2008-03-23 04:03:58 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:28 -0400
commit9e8a935bcff6c8154eace12277e6a9d853ef790b (patch)
treeba58258438a5abc698c75477f1480f07bd0dfb22 /include/asm-x86/vm86.h
parent364fe5ef4725176324ec17f8dc3fd488d615b0de (diff)
include/asm-x86/vm86.h: checkpatch cleanups - formatting only
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/vm86.h')
-rw-r--r--include/asm-x86/vm86.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/asm-x86/vm86.h b/include/asm-x86/vm86.h
index c92fe4af52e8..a2be241ed036 100644
--- a/include/asm-x86/vm86.h
+++ b/include/asm-x86/vm86.h
@@ -42,9 +42,11 @@
42#define VM86_ARG(retval) ((retval) >> 8) 42#define VM86_ARG(retval) ((retval) >> 8)
43 43
44#define VM86_SIGNAL 0 /* return due to signal */ 44#define VM86_SIGNAL 0 /* return due to signal */
45#define VM86_UNKNOWN 1 /* unhandled GP fault - IO-instruction or similar */ 45#define VM86_UNKNOWN 1 /* unhandled GP fault
46 - IO-instruction or similar */
46#define VM86_INTx 2 /* int3/int x instruction (ARG = x) */ 47#define VM86_INTx 2 /* int3/int x instruction (ARG = x) */
47#define VM86_STI 3 /* sti/popf/iret instruction enabled virtual interrupts */ 48#define VM86_STI 3 /* sti/popf/iret instruction enabled
49 virtual interrupts */
48 50
49/* 51/*
50 * Additional return values when invoking new vm86() 52 * Additional return values when invoking new vm86()
@@ -205,7 +207,8 @@ void release_vm86_irqs(struct task_struct *);
205#define handle_vm86_fault(a, b) 207#define handle_vm86_fault(a, b)
206#define release_vm86_irqs(a) 208#define release_vm86_irqs(a)
207 209
208static inline int handle_vm86_trap(struct kernel_vm86_regs *a, long b, int c) { 210static inline int handle_vm86_trap(struct kernel_vm86_regs *a, long b, int c)
211{
209 return 0; 212 return 0;
210} 213}
211 214