]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - cpu/i386/cpu.c
* Code cleanup:
[karo-tx-uboot.git] / cpu / i386 / cpu.c
index 3c67c124d05f228e3324f07780eaca19a7f4689d..f24e4ba525faef54db0be44af5e212e6c5c8e497 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * (C) Copyright 2002
  * Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
- * 
+ *
  * (C) Copyright 2002
  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  * Marius Groeger <mgroeger@sysgo.de>
@@ -40,11 +40,11 @@ int cpu_init(void)
 {
        /* initialize FPU, reset EM, set MP and NE */
        asm ("fninit\n" \
-             "movl %cr0, %eax\n" \
-             "andl $~0x4, %eax\n" \
-             "orl  $0x22, %eax\n" \
-             "movl %eax, %cr0\n" );
-       
+            "movl %cr0, %eax\n" \
+            "andl $~0x4, %eax\n" \
+            "orl  $0x22, %eax\n" \
+            "movl %eax, %cr0\n" );
+
        return 0;
 }
 
@@ -66,4 +66,3 @@ void  flush_cache (unsigned long dummy1, unsigned long dummy2)
        asm("wbinvd\n");
        return;
 }
-