[LinuxBIOS] r2654 - trunk/LinuxBIOSv2/src/cpu/amd/model_lx

svn at openbios.org svn at openbios.org
Fri May 11 00:21:13 CEST 2007


Author: stepan
Date: 2007-05-11 00:21:13 +0200 (Fri, 11 May 2007)
New Revision: 2654

Modified:
   trunk/LinuxBIOSv2/src/cpu/amd/model_lx/vsmsetup.c
Log:
indent is by no means as harmless as one might think ;-)
trivial fix.

Signed-off-by: Stefan Reinauer <stepan at coresystems.de>
Acked-by: Stefan Reinauer <stepan at coresystems.de>




Modified: trunk/LinuxBIOSv2/src/cpu/amd/model_lx/vsmsetup.c
===================================================================
--- trunk/LinuxBIOSv2/src/cpu/amd/model_lx/vsmsetup.c	2007-05-10 19:02:19 UTC (rev 2653)
+++ trunk/LinuxBIOSv2/src/cpu/amd/model_lx/vsmsetup.c	2007-05-10 22:21:13 UTC (rev 2654)
@@ -142,7 +142,8 @@
 		/* 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 @@
 		"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 @@
 		"	pop	%ds		\n"
 		"	popal			\n"
 		"	iret			\n"
-		"	.code32			\n");
+		"	.code32			\n"
+	);
 }
 
 enum {
@@ -510,7 +513,7 @@
 
 	// 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) {





More information about the coreboot mailing list