Commit fd1ea0c25ae00e2ac55881af55c3206664dd59a8

Authored by Joe Perches
Committed by Ingo Molnar
1 parent 0c7825e64d

include/asm-x86/lguest_hcall.h: checkpatch cleanups - formatting only

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

Showing 1 changed file with 2 additions and 3 deletions Side-by-side Diff

include/asm-x86/lguest_hcall.h
... ... @@ -46,7 +46,7 @@
46 46 {
47 47 /* "int" is the Intel instruction to trigger a trap. */
48 48 asm volatile("int $" __stringify(LGUEST_TRAP_ENTRY)
49   - /* The call in %eax (aka "a") might be overwritten */
  49 + /* The call in %eax (aka "a") might be overwritten */
50 50 : "=a"(call)
51 51 /* The arguments are in %eax, %edx, %ebx & %ecx */
52 52 : "a"(call), "d"(arg1), "b"(arg2), "c"(arg3)
... ... @@ -62,8 +62,7 @@
62 62 #define LGUEST_IRQS (NR_IRQS < 32 ? NR_IRQS: 32)
63 63  
64 64 #define LHCALL_RING_SIZE 64
65   -struct hcall_args
66   -{
  65 +struct hcall_args {
67 66 /* These map directly onto eax, ebx, ecx, edx in struct lguest_regs */
68 67 unsigned long arg0, arg2, arg3, arg1;
69 68 };