diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2007-05-10 22:21:13 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2007-05-10 22:21:13 +0000 |
commit | 00dc8595a63483e0cc93e8518993d12f4fe8227a (patch) | |
tree | 219d593547aee3178fd36ae94d8cd1f1c0f4cbc0 | |
parent | f05e85b390244e596dd0fc73bb774607b0c1ff9a (diff) |
indent is by no means as harmless as one might think ;-)
trivial fix.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2654 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
-rw-r--r-- | src/cpu/amd/model_lx/vsmsetup.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/cpu/amd/model_lx/vsmsetup.c b/src/cpu/amd/model_lx/vsmsetup.c index 5b2477dfb7..35c1381187 100644 --- a/src/cpu/amd/model_lx/vsmsetup.c +++ b/src/cpu/amd/model_lx/vsmsetup.c @@ -142,7 +142,8 @@ static void real_mode_switch_call_vsm(unsigned long smm, unsigned long sysm) /* save the stack */ " mov %%esp, __stack \n" " jmp 1f \n" - "__stack: .long 0 \n" "1:\n" + "__stack: .long 0 \n" + "1:\n" /* get devfn into %%ecx */ " movl %%esp, %%ebp \n" #if 0 @@ -389,7 +390,8 @@ void callbiosint(void) "callbiosint16: \n" " push %ds \n" " push %es \n" - " push %fs \n" " push %gs \n" + " push %fs \n" + " push %gs \n" // clean up the int #. To save space we put it in the lower // byte. But the top 24 bits are junk. " andl $0xff, %eax\n" @@ -464,7 +466,8 @@ void callbiosint(void) " pop %ds \n" " popal \n" " iret \n" - " .code32 \n"); + " .code32 \n" + ); } enum { @@ -510,7 +513,7 @@ int biosint(unsigned long intnumber, // cases in a good compiler are just as good as your own tables. switch (intnumber) { - case 0...15: + case 0 ... 15: // These are not BIOS service, but the CPU-generated exceptions printk_info("biosint: Oops, exception %u\n", intnumber); if (esp < 0x1000) { |