Since some people disapprove of white space cleanups mixed in regular commits
[coreboot.git] / src / cpu / intel / hyperthreading / intel_sibling.c
index 5e77a765a82da7bc6b646ecb054edeae3cb004d6..823d77c3a35a6313269b6aa3db3a1188f72f4273 100644 (file)
@@ -43,7 +43,7 @@ void intel_sibling_init(device_t cpu)
                }
                return;
        }
-       
+
        /* I am the primary cpu start up my siblings */
        for(i = 1; i < siblings; i++) {
                struct device_path cpu_path;
@@ -61,7 +61,7 @@ void intel_sibling_init(device_t cpu)
                }
 
 #if 1
-               printk(BIOS_DEBUG, "CPU: %u has sibling %u\n", 
+               printk(BIOS_DEBUG, "CPU: %u has sibling %u\n",
                        cpu->path.apic.apic_id,
                        new->path.apic.apic_id);
 #endif
@@ -72,6 +72,6 @@ void intel_sibling_init(device_t cpu)
                                new->path.apic.apic_id);
                }
        }
-       
+
 }